-
Notifications
You must be signed in to change notification settings - Fork 98
290 lines (241 loc) · 8.15 KB
/
Copy pathci.yml
File metadata and controls
290 lines (241 loc) · 8.15 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
name: CI
on:
push:
branches: [master, main, develop]
pull_request:
branches: [master, main, develop]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
NODE_VERSION: '20'
jobs:
lint:
name: Lint & Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Check formatting
run: npm run format:check
type-check:
name: TypeScript Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci
- name: Type check
run: npm run type-check
test:
name: Unit & Integration Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18', '20']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: Run unit tests with coverage
run: npm run test:coverage
- name: Upload coverage report
if: matrix.node-version == '20'
uses: codecov/codecov-action@v6
with:
files: ./coverage/lcov.info
fail_ci_if_error: false
e2e:
name: E2E Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci
- run: npx playwright install --with-deps chromium
- name: Build app
run: npm run build
- name: Run E2E tests
run: npm run test:e2e
- uses: actions/upload-artifact@v7
if: failure()
with:
name: playwright-report
path: playwright-report/
retention-days: 14
visual-regression:
name: Visual Regression Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci
- run: npx playwright install --with-deps chromium
- name: Build app
run: npm run build
- name: Restore baseline snapshots
uses: actions/cache@v5
with:
path: tests/e2e/snapshots
key: visual-snapshots-${{ github.base_ref || github.ref_name }}
restore-keys: visual-snapshots-
- name: Run visual regression tests
run: npm run test:visual
env:
PLAYWRIGHT_BASE_URL: http://localhost:4173
# Override webServer for CI preview build
# playwright.config.ts uses npm run dev; we override via env
- name: Upload diff artifacts on failure
if: failure()
uses: actions/upload-artifact@v7
with:
name: visual-diff-${{ github.run_number }}
path: |
tests/e2e/report/
test-results/
retention-days: 14
- name: Save updated snapshots
if: success()
uses: actions/cache/save@v5
with:
path: tests/e2e/snapshots
key: visual-snapshots-${{ github.base_ref || github.ref_name }}
build:
name: Build
runs-on: ubuntu-latest
needs: [lint, type-check, test]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci
- name: Build production bundle
run: npm run build
- name: Check bundle size
run: |
echo "Build artifacts:"
du -sh dist/
ls -lah dist/
- uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
retention-days: 7
# ── Bundle size budget ────────────────────────────────────────────────────
# Fails the PR if the gzipped main entry chunk exceeds BUDGET_KB.
# Add the label "skip-bundle-check" to the PR to bypass (e.g. intentional
# large dependency bump that will be addressed in a follow-up).
bundle-size:
name: Bundle Size Budget
runs-on: ubuntu-latest
needs: [lint, type-check, test]
env:
# Gzip budget for the main entry chunk in kilobytes.
BUDGET_KB: 500
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci
- name: Build production bundle
run: npm run build
- name: Measure gzipped bundle size
id: measure
run: |
# Find the main entry JS chunk (assets/index-*.js or assets/main-*.js)
MAIN_CHUNK=$(ls dist/assets/index-*.js dist/assets/main-*.js 2>/dev/null | head -n 1)
if [ -z "$MAIN_CHUNK" ]; then
echo "::error::Could not locate main entry chunk in dist/assets/"
exit 1
fi
GZIP_BYTES=$(gzip -c "$MAIN_CHUNK" | wc -c)
GZIP_KB=$(( GZIP_BYTES / 1024 ))
echo "main_chunk=$MAIN_CHUNK" >> "$GITHUB_OUTPUT"
echo "gzip_kb=$GZIP_KB" >> "$GITHUB_OUTPUT"
echo "budget_kb=$BUDGET_KB" >> "$GITHUB_OUTPUT"
echo "### Bundle Size Report" >> "$GITHUB_STEP_SUMMARY"
echo "| Metric | Value |" >> "$GITHUB_STEP_SUMMARY"
echo "|--------|-------|" >> "$GITHUB_STEP_SUMMARY"
echo "| Main chunk | \`$MAIN_CHUNK\` |" >> "$GITHUB_STEP_SUMMARY"
echo "| Gzipped size | **${GZIP_KB} KB** |" >> "$GITHUB_STEP_SUMMARY"
echo "| Budget | ${BUDGET_KB} KB |" >> "$GITHUB_STEP_SUMMARY"
if [ "$GZIP_KB" -gt "$BUDGET_KB" ]; then
echo "| Status | ❌ Over budget by $(( GZIP_KB - BUDGET_KB )) KB |" >> "$GITHUB_STEP_SUMMARY"
else
echo "| Status | ✅ Within budget ($(( BUDGET_KB - GZIP_KB )) KB headroom) |" >> "$GITHUB_STEP_SUMMARY"
fi
- name: Enforce budget (skippable via label)
# Skip enforcement when the PR carries the override label.
if: >
!contains(
github.event.pull_request.labels.*.name,
'skip-bundle-check'
)
run: |
GZIP_KB=${{ steps.measure.outputs.gzip_kb }}
BUDGET_KB=${{ steps.measure.outputs.budget_kb }}
if [ "$GZIP_KB" -gt "$BUDGET_KB" ]; then
echo "::error::Main bundle is ${GZIP_KB} KB gzipped — exceeds the ${BUDGET_KB} KB budget."
echo "::error::To bypass, add the 'skip-bundle-check' label to this PR and document the reason."
exit 1
fi
echo "✅ Main bundle is ${GZIP_KB} KB gzipped (budget: ${BUDGET_KB} KB)."
- name: Upload dist artifact
uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
retention-days: 7
# ── On-demand bundle visualizer ───────────────────────────────────────────
# Triggered manually (workflow_dispatch) or when the PR has the label
# "generate-bundle-report". Uploads dist/stats.html as a CI artifact.
analyze:
name: Bundle Visualizer
runs-on: ubuntu-latest
if: >
github.event_name == 'workflow_dispatch' ||
contains(
github.event.pull_request.labels.*.name,
'generate-bundle-report'
)
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci
- name: Build with visualizer
run: npm run build:analyze
env:
ANALYZE: '1'
- name: Upload stats.html
uses: actions/upload-artifact@v7
with:
name: bundle-stats
path: dist/stats.html
retention-days: 30