forked from paperswithcode/ai-deadlines
-
Notifications
You must be signed in to change notification settings - Fork 24
392 lines (334 loc) · 12 KB
/
e2e-tests.yml
File metadata and controls
392 lines (334 loc) · 12 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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
name: E2E Tests
# E2E tests are expensive - only run when manually triggered or on schedule
on:
workflow_dispatch:
inputs:
browsers:
description: 'Browsers to test (comma-separated: chromium,firefox,webkit)'
required: false
default: 'chromium'
test-pattern:
description: 'Test file pattern to run'
required: false
default: '**/*.spec.js'
schedule:
# Run nightly at 2 AM UTC
- cron: '0 2 * * *'
push:
branches:
- main
paths:
# Only run automatically on significant UI changes
- '_layouts/**'
- '_includes/**'
- 'static/js/**'
jobs:
# Build the site once and share it across all test jobs
build:
name: Build Jekyll Site
runs-on: ubuntu-latest
steps:
- name: 📂 Checkout repository
uses: actions/checkout@v6
- name: 💎 Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: 📦 Install Ruby dependencies
run: bundle install
- name: 🏗️ Build Jekyll site
run: |
bundle exec jekyll build --config _config.yml,_config.test.yml
env:
JEKYLL_ENV: test
- name: 📤 Upload built site
uses: actions/upload-artifact@v6
with:
name: jekyll-site
path: _site/
retention-days: 1
e2e-tests:
name: E2E Tests - ${{ matrix.browser }}
runs-on: ubuntu-latest
needs: build
strategy:
fail-fast: false
matrix:
browser: [chromium, firefox, webkit]
steps:
- name: 📂 Checkout repository
uses: actions/checkout@v6
- name: 🟢 Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: 📦 Install Node dependencies
run: npm ci
- name: 🎭 Install Playwright browsers
run: |
npx playwright install --with-deps ${{ matrix.browser }}
- name: 📥 Download built site
uses: actions/download-artifact@v7
with:
name: jekyll-site
path: _site/
- name: 🚀 Start static server
run: |
npx serve _site -l 4000 &
env:
CI: true
- name: ⏳ Wait for server
run: |
npx wait-on http://localhost:4000 -t 15000
- name: 🧪 Run E2E tests
run: |
PLAYWRIGHT_JSON_OUTPUT_NAME=test-results.json npx playwright test --project=${{ matrix.browser }} --reporter=html,json
env:
CI: true
BASE_URL: http://localhost:4000
- name: 📋 Write test summary
if: always()
run: |
if [ -f test-results.json ]; then
echo "## 🎭 E2E Test Results - ${{ matrix.browser }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
node -e "
const results = require('./test-results.json');
const stats = results.stats || {};
const passed = stats.expected - stats.unexpected - stats.flaky || 0;
const failed = stats.unexpected || 0;
const flaky = stats.flaky || 0;
const skipped = stats.skipped || 0;
const total = stats.expected || 0;
const status = failed === 0 ? '✅ Passed' : '❌ Failed';
console.log('| Status | Total | Passed | Failed | Flaky | Skipped |');
console.log('|--------|-------|--------|--------|-------|---------|');
console.log('| ' + status + ' | ' + total + ' | ' + passed + ' | ' + failed + ' | ' + flaky + ' | ' + skipped + ' |');
" >> $GITHUB_STEP_SUMMARY
fi
- name: 📊 Upload test results
if: always()
uses: actions/upload-artifact@v6
with:
name: playwright-report-${{ matrix.browser }}
path: |
playwright-report/
test-results/
retention-days: 7
- name: 📸 Upload screenshots
if: failure()
uses: actions/upload-artifact@v6
with:
name: screenshots-${{ matrix.browser }}
path: test-results/screenshots/
retention-days: 7
e2e-mobile:
name: E2E Tests - Mobile
runs-on: ubuntu-latest
needs: build
steps:
- name: 📂 Checkout repository
uses: actions/checkout@v6
- name: 🟢 Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: 📦 Install Node dependencies
run: npm ci
- name: 🎭 Install Playwright browsers
run: |
npx playwright install --with-deps chromium webkit
- name: 📥 Download built site
uses: actions/download-artifact@v7
with:
name: jekyll-site
path: _site/
- name: 🚀 Start static server
run: |
npx serve _site -l 4000 &
env:
CI: true
- name: ⏳ Wait for server
run: |
npx wait-on http://localhost:4000 -t 15000
- name: 📱 Run mobile E2E tests
run: |
PLAYWRIGHT_JSON_OUTPUT_NAME=test-results.json npx playwright test --project=mobile-chrome --project=mobile-safari --reporter=html,json
env:
CI: true
BASE_URL: http://localhost:4000
- name: 📋 Write test summary
if: always()
run: |
if [ -f test-results.json ]; then
echo "## 🎭 E2E Test Results - Mobile" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
node -e "
const results = require('./test-results.json');
const stats = results.stats || {};
const passed = stats.expected - stats.unexpected - stats.flaky || 0;
const failed = stats.unexpected || 0;
const flaky = stats.flaky || 0;
const skipped = stats.skipped || 0;
const total = stats.expected || 0;
const status = failed === 0 ? '✅ Passed' : '❌ Failed';
console.log('| Status | Total | Passed | Failed | Flaky | Skipped |');
console.log('|--------|-------|--------|--------|-------|---------|');
console.log('| ' + status + ' | ' + total + ' | ' + passed + ' | ' + failed + ' | ' + flaky + ' | ' + skipped + ' |');
" >> $GITHUB_STEP_SUMMARY
fi
- name: 📊 Upload mobile test results
if: always()
uses: actions/upload-artifact@v6
with:
name: playwright-report-mobile
path: |
playwright-report/
test-results/
retention-days: 7
visual-regression:
name: Visual Regression Tests
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'pull_request'
steps:
- name: 📂 Checkout repository
uses: actions/checkout@v6
- name: 🟢 Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: 📦 Install Node dependencies
run: npm ci
- name: 🎭 Install Playwright
run: |
npx playwright install --with-deps chromium
- name: 📥 Download built site
uses: actions/download-artifact@v7
with:
name: jekyll-site
path: _site/
- name: 🚀 Start static server
run: |
npx serve _site -l 4000 &
env:
CI: true
- name: ⏳ Wait for server
run: |
npx wait-on http://localhost:4000 -t 15000
- name: 📸 Capture screenshots
run: |
npx playwright test --project=chromium --grep @visual
env:
CI: true
BASE_URL: http://localhost:4000
- name: 🖼️ Upload visual diffs
if: failure()
uses: actions/upload-artifact@v6
with:
name: visual-diffs
path: test-results/visual-diffs/
retention-days: 7
report:
name: Test Report
runs-on: ubuntu-latest
needs: [e2e-tests, e2e-mobile]
if: always()
steps:
- name: 📂 Checkout repository
uses: actions/checkout@v6
- name: 🟢 Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
- name: 📥 Download all artifacts
uses: actions/download-artifact@v7
with:
path: all-reports
- name: 📋 Merge test results
run: |
mkdir -p merged-report
# Merge all test results
find all-reports -name "*.xml" -exec cp {} merged-report/ \;
find all-reports -name "*.json" -exec cp {} merged-report/ \;
- name: 💬 Comment PR with results
if: github.event_name == 'pull_request'
uses: actions/github-script@v8
with:
script: |
const fs = require('fs');
const path = require('path');
let comment = '## 🎭 E2E Test Results\n\n';
// Parse test results
const reportFiles = fs.readdirSync('merged-report').filter(f => f.endsWith('.json'));
let totalTests = 0;
let passedTests = 0;
let failedTests = 0;
let skippedTests = 0;
reportFiles.forEach(file => {
try {
const data = JSON.parse(fs.readFileSync(path.join('merged-report', file), 'utf8'));
if (data.stats) {
totalTests += data.stats.expected || 0;
passedTests += data.stats.passed || 0;
failedTests += data.stats.failed || 0;
skippedTests += data.stats.skipped || 0;
}
} catch (e) {
console.error(`Failed to parse ${file}:`, e);
}
});
comment += `| Browser | Status | Tests | Passed | Failed | Skipped |\n`;
comment += `|---------|--------|-------|--------|--------|----------|\n`;
const browsers = ['chromium', 'firefox', 'webkit', 'mobile'];
for (const browser of browsers) {
const artifactExists = fs.existsSync(`all-reports/playwright-report-${browser}`);
if (artifactExists) {
const status = failedTests === 0 ? '✅' : '❌';
comment += `| ${browser} | ${status} | ${totalTests} | ${passedTests} | ${failedTests} | ${skippedTests} |\n`;
}
}
comment += '\n### 📊 Coverage Summary\n';
comment += '- Notification System: ✅ Tested\n';
comment += '- Countdown Timers: ✅ Tested\n';
comment += '- Conference Management: ✅ Tested\n';
comment += '- Search & Filter: ✅ Tested\n';
if (failedTests > 0) {
comment += '\n⚠️ **Some tests failed. Please check the artifacts for details.**\n';
} else {
comment += '\n✅ **All E2E tests passed successfully!**\n';
}
// Find and update or create comment
const { data: comments } = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
});
const botComment = comments.find(comment =>
comment.user.type === 'Bot' &&
comment.body.includes('E2E Test Results')
);
if (botComment) {
await github.rest.issues.updateComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: botComment.id,
body: comment
});
} else {
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: comment
});
}
- name: 📈 Upload to dashboard
if: github.ref == 'refs/heads/main'
continue-on-error: true
run: |
echo "Test results can be uploaded to a dashboard service here"