forked from evidentlyai/evidently
-
Notifications
You must be signed in to change notification settings - Fork 0
180 lines (147 loc) · 5.53 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
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-22.04 # windows-latest || macos-latest
name: 👀 List Changed UI Files
outputs:
ui_any_modified: ${{ steps.changed-files.outputs.ui_any_modified == 'true' }}
evidently_python_any_modified: ${{ steps.changed-files.outputs.evidently_python_any_modified == 'true' }}
steps:
- uses: actions/checkout@v4
- name: Get all UI files that have changed
id: changed-files
uses: tj-actions/changed-files@v42
with:
files_yaml: |
ui:
- .github/**
- ui/**
evidently_python:
- .github/**
- 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_modified == '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_and_modified_files }}"
- name: Run step if Playwright file(s) changed
if: steps.changed-files.outputs.evidently_python_any_modified == '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_and_modified_files }}"
ui-type-check:
name: UI type-check
runs-on: ubuntu-22.04
needs: changed_files
if: ${{ github.event.pull_request.draft == false && (needs.changed_files.outputs.ui_any_modified == 'true' || needs.changed_files.outputs.evidently_python_any_modified == 'true') }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 📥 Install ui dependencies
uses: ./.github/share-actions/ui-node-pnpm-install
- name: 👌 Get types for UI
uses: ./.github/share-actions/ui-types-from-backend
- name: 🔬 Type check
working-directory: ui
run: pnpm type-check
ui-deps-analyze:
name: UI deps analyze
runs-on: ubuntu-22.04
needs: changed_files
if: ${{ github.event.pull_request.draft == false && needs.changed_files.outputs.ui_any_modified == 'true' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 📥 Install ui dependencies
uses: ./.github/share-actions/ui-node-pnpm-install
- name: 🔬 Analyze deps
working-directory: ui/service
run: npx vite-bundle-visualizer@1.0.0 -o vite-bundle-report/index.html
- uses: actions/upload-artifact@v4
if: always()
with:
name: vite-bundle-visualizer
path: ui/service/vite-bundle-report
retention-days: 30
ui-build:
name: UI build
runs-on: ubuntu-22.04
needs: changed_files
if: ${{ github.event.pull_request.draft == false && needs.changed_files.outputs.ui_any_modified == 'true' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 📥 Install ui dependencies
uses: ./.github/share-actions/ui-node-pnpm-install
- name: 🔧 Build
working-directory: ui
run: pnpm build
ui-test:
name: UI playwright tests
runs-on: ubuntu-22.04
needs: changed_files
if: ${{ github.event.pull_request.draft == false && needs.changed_files.outputs.evidently_python_any_modified == 'true' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
architecture: "x64"
cache: "pip"
- name: Install Evidently
run: pip install -e .
- name: Install dvc
run: pip install 'dvc[gs]==3.50.1'
- name: Pull test data
run: dvc pull
- name: 📥 Install ui dependencies
uses: ./.github/share-actions/ui-node-pnpm-install
- name: Install Playwright Browsers
working-directory: ui
run: pnpm dlx playwright@1.43.0 install --with-deps
- uses: actions/cache@v3
id: cache-bikes-dataset
env:
cache-name: cache-bikes-dataset
with:
path: Bike-Sharing-Dataset.zip
key: cache-bikes-dataset
- name: Download test data
if: ${{ steps.cache-bikes-dataset.outputs.cache-hit != 'true' }}
run: curl -k https://archive.ics.uci.edu/static/public/275/bike+sharing+dataset.zip -o Bike-Sharing-Dataset.zip
- name: Run UI
run: EXPERIMENTAL_DETERMINISTIC_UUID="true" evidently ui --port 8000 --workspace workspace-for-visual-testing --demo-projects all &
- name: Wait UI to be ready to test
working-directory: ui/service
run: pnpm wait-on tcp:127.0.0.1:8000 -t 200000
- name: Run Service Playwright tests
working-directory: ui/service
run: pnpm test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: ui/service/playwright-report/
retention-days: 30