forked from paperswithcode/ai-deadlines
-
Notifications
You must be signed in to change notification settings - Fork 29
322 lines (272 loc) · 9.36 KB
/
Copy pathe2e-tests.yml
File metadata and controls
322 lines (272 loc) · 9.36 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
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:
e2e-tests:
name: E2E Tests - ${{ matrix.browser }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
browser: [chromium, firefox, webkit]
steps:
- name: 📂 Checkout repository
uses: actions/checkout@v5
- name: 💎 Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: 🟢 Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: 📦 Install dependencies
run: |
bundle install
npm ci
- name: 🎭 Install Playwright browsers
run: |
npx playwright install --with-deps ${{ matrix.browser }}
- name: 🚀 Start Jekyll server (test mode for speed)
run: |
bundle exec jekyll serve --config _config.yml,_config.test.yml --incremental --detach --skip-initial-build
env:
JEKYLL_ENV: test
- name: ⏳ Wait for server
run: |
npx wait-on http://localhost:4000 -t 30000
- name: 🧪 Run E2E tests
run: |
npx playwright test --project=${{ matrix.browser }}
env:
CI: true
BASE_URL: http://localhost:4000
- name: 📊 Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report-${{ matrix.browser }}
path: |
playwright-report/
test-results/
retention-days: 7
- name: 📸 Upload screenshots
if: failure()
uses: actions/upload-artifact@v4
with:
name: screenshots-${{ matrix.browser }}
path: test-results/screenshots/
retention-days: 7
e2e-mobile:
name: E2E Tests - Mobile
runs-on: ubuntu-latest
steps:
- name: 📂 Checkout repository
uses: actions/checkout@v5
- name: 💎 Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: 🟢 Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: 📦 Install dependencies
run: |
bundle install
npm ci
- name: 🎭 Install Playwright browsers
run: |
npx playwright install --with-deps chromium webkit
- name: 🚀 Start Jekyll server (test mode for speed)
run: |
bundle exec jekyll serve --config _config.yml,_config.test.yml --incremental --detach --skip-initial-build
env:
JEKYLL_ENV: test
- name: ⏳ Wait for server
run: |
npx wait-on http://localhost:4000 -t 30000
- name: 📱 Run mobile E2E tests
run: |
npx playwright test --project=mobile-chrome --project=mobile-safari
env:
CI: true
BASE_URL: http://localhost:4000
- name: 📊 Upload mobile test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report-mobile
path: |
playwright-report/
test-results/
retention-days: 7
visual-regression:
name: Visual Regression Tests
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: 📂 Checkout repository
uses: actions/checkout@v5
- name: 💎 Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: 🟢 Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: 📦 Install dependencies
run: |
bundle install
npm ci
- name: 🎭 Install Playwright
run: |
npx playwright install --with-deps chromium
- name: 🚀 Start Jekyll server (test mode for speed)
run: |
bundle exec jekyll serve --config _config.yml,_config.test.yml --incremental --detach --skip-initial-build
env:
JEKYLL_ENV: test
- name: ⏳ Wait for server
run: |
npx wait-on http://localhost:4000 -t 30000
- 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@v4
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@v5
- name: 🟢 Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
- name: 📥 Download all artifacts
uses: actions/download-artifact@v5
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"