-
Notifications
You must be signed in to change notification settings - Fork 0
357 lines (294 loc) · 9.92 KB
/
frontend-tests.yml
File metadata and controls
357 lines (294 loc) · 9.92 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
name: Frontend Tests
on:
push:
branches: [ main, develop ]
paths:
- 'MakerMatrix/frontend/**'
- '.github/workflows/frontend-tests.yml'
pull_request:
branches: [ main, develop ]
paths:
- 'MakerMatrix/frontend/**'
- '.github/workflows/frontend-tests.yml'
jobs:
# Unit and Integration Tests
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cleanup Docker containers (if running locally with act)
if: always()
run: |
if [ -f /.dockerenv ]; then
echo "Running in Docker (act detected), cleaning up containers after workflow..."
fi
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: MakerMatrix/frontend/package-lock.json
- name: Install dependencies
working-directory: MakerMatrix/frontend
run: npm ci
- name: Run linting
working-directory: MakerMatrix/frontend
run: npm run lint
- name: Run type checking
working-directory: MakerMatrix/frontend
run: npx tsc --noEmit
- name: Run unit tests
working-directory: MakerMatrix/frontend
run: npm run test:run
- name: Run tests with coverage
working-directory: MakerMatrix/frontend
run: npm run test:coverage
- name: Upload coverage reports
uses: codecov/codecov-action@v3
with:
file: MakerMatrix/frontend/coverage/lcov.info
flags: frontend
name: frontend-coverage
# End-to-End Tests
e2e-tests:
runs-on: ubuntu-latest
services:
# We'll start the backend manually using Python
python:
image: python:3.11
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: MakerMatrix/frontend/package-lock.json
- name: Install Python dependencies
run: |
python -m venv venv_test
source venv_test/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
- name: Install frontend dependencies
working-directory: MakerMatrix/frontend
run: npm ci
- name: Install Playwright browsers
working-directory: MakerMatrix/frontend
run: npx playwright install --with-deps
- name: Start backend server
run: |
source venv_test/bin/activate
python -m uvicorn MakerMatrix.main:app --host 0.0.0.0 --port 57891 &
sleep 10
curl --retry 5 --retry-delay 5 --retry-connrefused http://localhost:57891/docs
- name: Build frontend for E2E
working-directory: MakerMatrix/frontend
run: npm run build
- name: Start frontend server
working-directory: MakerMatrix/frontend
run: |
npm run preview &
sleep 5
curl --retry 5 --retry-delay 5 --retry-connrefused http://localhost:4173
- name: Run E2E tests
working-directory: MakerMatrix/frontend
run: npm run test:e2e
env:
BASE_URL: http://localhost:4173
- name: Upload E2E test results
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: MakerMatrix/frontend/playwright-report/
retention-days: 30
# Visual Regression Tests
visual-tests:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: MakerMatrix/frontend/package-lock.json
- name: Install dependencies
working-directory: MakerMatrix/frontend
run: npm ci
- name: Install Playwright browsers
working-directory: MakerMatrix/frontend
run: npx playwright install --with-deps
- name: Run visual regression tests
working-directory: MakerMatrix/frontend
run: npm run test:visual
- name: Upload visual test results
uses: actions/upload-artifact@v4
if: failure()
with:
name: visual-test-results
path: MakerMatrix/frontend/test-results/
retention-days: 30
# Accessibility Tests
accessibility-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: MakerMatrix/frontend/package-lock.json
- name: Install Python dependencies
run: |
python -m venv venv_test
source venv_test/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
- name: Install frontend dependencies
working-directory: MakerMatrix/frontend
run: npm ci
- name: Install Playwright browsers
working-directory: MakerMatrix/frontend
run: npx playwright install --with-deps
- name: Start backend server
run: |
source venv_test/bin/activate
python -m uvicorn MakerMatrix.main:app --host 0.0.0.0 --port 57891 &
sleep 10
- name: Start frontend server
working-directory: MakerMatrix/frontend
run: |
npm run dev &
sleep 10
- name: Run accessibility tests
working-directory: MakerMatrix/frontend
run: |
# Create accessibility test script
npx playwright test --grep "accessibility" --reporter=html
- name: Upload accessibility test results
uses: actions/upload-artifact@v4
if: always()
with:
name: accessibility-report
path: MakerMatrix/frontend/playwright-report/
retention-days: 30
# Bundle Size Analysis
bundle-analysis:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: MakerMatrix/frontend/package-lock.json
- name: Install dependencies
working-directory: MakerMatrix/frontend
run: npm ci
- name: Build application
working-directory: MakerMatrix/frontend
run: npm run build
- name: Analyze bundle size
working-directory: MakerMatrix/frontend
run: |
npm install -g bundlesize
npx bundlesize
- name: Comment bundle size
uses: actions/github-script@v7
if: github.event_name == 'pull_request'
with:
script: |
const fs = require('fs');
const path = require('path');
// Read bundle analysis results
const distPath = 'MakerMatrix/frontend/dist/assets';
if (fs.existsSync(distPath)) {
const files = fs.readdirSync(distPath);
const jsFiles = files.filter(f => f.endsWith('.js'));
const cssFiles = files.filter(f => f.endsWith('.css'));
let comment = '## Bundle Size Analysis\n\n';
comment += '### JavaScript Files\n';
jsFiles.forEach(file => {
const size = fs.statSync(path.join(distPath, file)).size;
comment += `- ${file}: ${(size / 1024).toFixed(2)} KB\n`;
});
comment += '\n### CSS Files\n';
cssFiles.forEach(file => {
const size = fs.statSync(path.join(distPath, file)).size;
comment += `- ${file}: ${(size / 1024).toFixed(2)} KB\n`;
});
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: comment
});
}
# Performance Tests
performance-tests:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: MakerMatrix/frontend/package-lock.json
- name: Install Python dependencies
run: |
python -m venv venv_test
source venv_test/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
- name: Install frontend dependencies
working-directory: MakerMatrix/frontend
run: npm ci
- name: Build application
working-directory: MakerMatrix/frontend
run: npm run build
- name: Start servers
run: |
source venv_test/bin/activate
python -m uvicorn MakerMatrix.main:app --host 0.0.0.0 --port 57891 &
cd MakerMatrix/frontend && npm run preview &
sleep 15
- name: Run Lighthouse CI
working-directory: MakerMatrix/frontend
run: |
npm install -g @lhci/cli
lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
- name: Upload Lighthouse results
uses: actions/upload-artifact@v4
if: always()
with:
name: lighthouse-report
path: MakerMatrix/frontend/.lighthouseci/
retention-days: 30