-
Notifications
You must be signed in to change notification settings - Fork 0
186 lines (157 loc) · 5.14 KB
/
Copy pathe2e.yml
File metadata and controls
186 lines (157 loc) · 5.14 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
name: E2E Tests
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
jobs:
e2e-tests:
name: Run E2E Tests
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
shard: [1, 2, 3, 4]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: |
cd frontend
npm ci
- name: Cache Playwright browsers
uses: actions/cache@v4
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('frontend/package-lock.json') }}
- name: Install Playwright Browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: |
cd frontend
npx playwright install --with-deps
- name: Install Playwright dependencies (cached browsers)
if: steps.playwright-cache.outputs.cache-hit == 'true'
run: |
sudo apt-get update
sudo apt-get install -y libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libasound2
- name: Run E2E tests
run: |
cd frontend
npx playwright test --shard=${{ matrix.shard }}/${{ strategy.total-shards }} --reporter=list
env:
CI: true
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-results-shard-${{ matrix.shard }}
path: frontend/playwright-report/
retention-days: 7
- name: Upload test screenshots
if: failure()
uses: actions/upload-artifact@v4
with:
name: playwright-screenshots-shard-${{ matrix.shard }}
path: frontend/test-results/
retention-days: 7
- name: Upload test videos
if: failure()
uses: actions/upload-artifact@v4
with:
name: playwright-videos-shard-${{ matrix.shard }}
path: frontend/test-results/
retention-days: 7
- name: Upload test traces
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-traces-shard-${{ matrix.shard }}
path: frontend/playwright-trace/
retention-days: 7
e2e-tests-report:
name: Generate E2E Test Report
runs-on: ubuntu-latest
needs: e2e-tests
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Download all test results
uses: actions/download-artifact@v4
with:
pattern: playwright-results-*
merge-multiple: true
path: playwright-results
- name: Generate test report
run: |
# Merge all test results
echo "## E2E Test Results" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "| Test | Status | Duration |" >> $GITHUB_STEP_SUMMARY
echo "|------|--------|----------|" >> $GITHUB_STEP_SUMMARY
# Parse test results and add to summary
for file in playwright-results-*/*; do
if [ -f "$file" ]; then
echo "| $(basename $file) | ✅ | - |" >> $GITHUB_STEP_SUMMARY
fi
done
- name: Comment on PR
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
with:
script: |
const fs = require('fs');
const testResults = fs.readFileSync(process.env.GITHUB_STEP_SUMMARY, 'utf8');
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: testResults
});
github-token: ${{ secrets.GITHUB_TOKEN }}
visual-regression:
name: Visual Regression Tests
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: |
cd frontend
npm ci
- name: Install Playwright Browsers
run: |
cd frontend
npx playwright install --with-deps chromium
- name: Run visual regression tests
run: |
cd frontend
npx playwright test --grep="@visual"
env:
CI: true
- name: Upload visual regression results
if: always()
uses: actions/upload-artifact@v4
with:
name: visual-regression-results
path: frontend/playwright-report/
retention-days: 30