-
Notifications
You must be signed in to change notification settings - Fork 630
115 lines (92 loc) · 2.94 KB
/
ui.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: UI
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ui-build:
name: UI type-check and build with node v${{ matrix.node-version }}
runs-on: ubuntu-20.04
if: github.event.pull_request.draft == false
strategy:
matrix:
node-version: [16, 18]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: ui/pnpm-lock.yaml
- name: 📥 Install node dependencies
working-directory: ui
run: pnpm i --frozen-lockfile
- name: 🔬 Type check
working-directory: ui
run: pnpm type-check
- name: 🔧 Build
working-directory: ui
run: pnpm build
- name: 🔬 Analyze deps
working-directory: ui/service
run: npx vite-bundle-visualizer -o vite-bundle-report/index.html
- uses: actions/upload-artifact@v3
if: always()
with:
name: vite-bundle-visualizer-${{ matrix.node-version }}
path: ui/service/vite-bundle-report
retention-days: 30
ui-test:
name: Playwright tests for Service
runs-on: ubuntu-20.04
if: github.event.pull_request.draft == false
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"
cache-dependency-path: ui/pnpm-lock.yaml
- name: 📥 Install node dependencies
working-directory: ui
run: pnpm i --frozen-lockfile
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- uses: actions/setup-python@v4
with:
python-version: "3.9"
architecture: "x64"
cache: "pip"
- name: Install python dependencies
run: pip install -e .
- name: Run UI
run: evidently ui --port 8000 --demo-projects all --workspace test-workspace &
- name: Wait UI to be ready to test
working-directory: ui/service
run: pnpm wait-on tcp:127.0.0.1:8000 -t 300000
- name: Run Service Playwright tests
working-directory: ui/service
run: pnpm test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: ui/service/playwright-report/
retention-days: 30