-
Notifications
You must be signed in to change notification settings - Fork 595
166 lines (138 loc) · 4.79 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
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]
types:
- opened
- reopened
- synchronize
- ready_for_review
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
changed_files:
runs-on: ubuntu-latest # windows-latest || macos-latest
name: 👀 List Changed UI Files
outputs:
ui_any_changed: ${{ steps.changed-files.outputs.ui_any_changed == 'true' }}
evidently_python_any_changed: ${{ steps.changed-files.outputs.evidently_python_any_changed == 'true' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Get all UI files that have changed
id: changed-files
uses: tj-actions/changed-files@v40
with:
files_yaml: |
ui:
- ui/**
evidently_python:
- src/evidently/**
- requirements.dev.txt
- requirements.min.txt
- setup.py
- setup.cfg
- setupbase.py
- name: Run step if UI file(s) changed
if: steps.changed-files.outputs.ui_any_changed == 'true'
run: |
echo "One or more ui file(s) has changed."
echo "List all the files that have changed: ${{ steps.changed-files.outputs.ui_all_changed_files }}"
- name: Run step if Playwright file(s) changed
if: steps.changed-files.outputs.evidently_python_any_changed == 'true'
run: |
echo "One or more evidently_python file(s) has changed."
echo "List all the files that have changed: ${{ steps.changed-files.outputs.evidently_python_all_changed_files }}"
ui-build:
name: UI type-check and build with node v${{ matrix.node-version }}
runs-on: ubuntu-20.04
needs: changed_files
if: ${{ github.event.pull_request.draft == false && needs.changed_files.outputs.ui_any_changed == 'true' }}
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 --ignore-scripts
- 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 [email protected] -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
needs: changed_files
if: ${{ github.event.pull_request.draft == false && needs.changed_files.outputs.evidently_python_any_changed == 'true' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.9"
architecture: "x64"
cache: "pip"
- name: Install Evidently
run: pip install -e .
- name: Install dvc
run: pip install dvc[gs]
- name: Pull data
run: dvc pull
- 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 --ignore-scripts
- name: Install Playwright Browsers
working-directory: ui
run: pnpm dlx [email protected] install --with-deps
- name: Run UI
run: evidently ui --port 8000 --workspace workspace-for-visual-testing &
- name: Wait UI to be ready to test
working-directory: ui/service
run: pnpm wait-on tcp:127.0.0.1:8000 -t 10000
- 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