-
Notifications
You must be signed in to change notification settings - Fork 0
392 lines (323 loc) · 10.9 KB
/
Copy pathci.yml
File metadata and controls
392 lines (323 loc) · 10.9 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: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm lint
typecheck:
name: TypeScript Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run typecheck
run: pnpm typecheck
test:
name: Test (Node ${{ matrix.node-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [24, 25]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Run tests
run: pnpm test
test-coverage:
name: Test Coverage
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Run tests with coverage
run: pnpm test --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/coverage-final.json
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build all packages
run: pnpm build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: |
packages/*/dist
examples/storefront/dist
retention-days: 7
e2e:
name: E2E Tests
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright browsers
run: pnpm exec playwright install --with-deps chromium
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-artifacts
- name: Run E2E tests
run: pnpm exec playwright test
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report/
retention-days: 7
benchmark:
name: Performance Benchmarks
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Run benchmarks
run: pnpm bench
- name: Comment benchmark results
uses: actions/github-script@v7
if: always()
with:
script: |
const fs = require('fs');
const benchmarkResults = fs.existsSync('benchmark-results.json')
? fs.readFileSync('benchmark-results.json', 'utf8')
: 'No benchmark results generated';
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `## Benchmark Results\n\n\`\`\`json\n${benchmarkResults}\n\`\`\``
});
bundle-size:
name: Bundle Size Check
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-artifacts
- name: Checkout base branch
if: github.event_name == 'pull_request'
run: |
git fetch origin ${{ github.base_ref }}
git checkout origin/${{ github.base_ref }} -- metrics/bundle-size-baseline.json || echo "No baseline found"
- name: Check bundle sizes
id: bundle-check
run: |
if [ "${{ github.event_name }}" == "pull_request" ]; then
node scripts/check-budgets.mjs --compare --ci --json > bundle-size-results.json || true
else
node scripts/check-budgets.mjs --save-history --json > bundle-size-results.json
fi
cat bundle-size-results.json
- name: Comment PR with bundle size report
uses: actions/github-script@v7
if: github.event_name == 'pull_request'
with:
script: |
const fs = require('fs');
let results;
try {
results = JSON.parse(fs.readFileSync('bundle-size-results.json', 'utf8'));
} catch (e) {
console.log('Failed to parse results:', e);
return;
}
// Format the report
let body = '## Bundle Size Report\n\n';
// Summary table
body += '### Summary\n\n';
body += '| Metric | Value |\n';
body += '|--------|-------|\n';
body += `| Total packages | ${results.summary.totalPackages} |\n`;
body += `| Total files | ${results.summary.totalFiles} |\n`;
body += `| Total size (gzip) | ${(results.summary.totalSizeGzip / 1024).toFixed(2)} KB |\n`;
body += `| Budgets passed | ${results.summary.budgetsPassed ? '✅ Yes' : '❌ No'} |\n\n`;
// Package details
for (const [pkgName, pkgData] of Object.entries(results.packages)) {
body += `### ${pkgName}\n\n`;
if (pkgData.error) {
body += `⚠️ ${pkgData.error}\n\n`;
continue;
}
body += '| File | Size (gzip) | Budget | Status |\n';
body += '|------|-------------|--------|--------|\n';
for (const file of pkgData.files || []) {
const fileName = file.name || file.file;
const size = (file.gzipSize / 1024).toFixed(2);
const budget = file.budget ? (file.budget / 1024).toFixed(2) : '-';
const status = file.budgetPassed !== false ? '✅' : '❌';
body += `| ${fileName} | ${size} KB | ${budget} KB | ${status} |\n`;
}
body += '\n';
}
// Regressions
if (results.regressions && results.regressions.length > 0) {
body += '### ⚠️ Size Regressions Detected\n\n';
body += '| Package/File | Old Size | New Size | Change |\n';
body += '|--------------|----------|----------|--------|\n';
for (const reg of results.regressions) {
const oldSize = (reg.oldSize / 1024).toFixed(2);
const newSize = (reg.newSize / 1024).toFixed(2);
const change = reg.change > 0 ? `+${reg.change.toFixed(1)}%` : `${reg.change.toFixed(1)}%`;
body += `| ${reg.package}/${reg.file} | ${oldSize} KB | ${newSize} KB | ${change} |\n`;
}
body += '\n';
}
body += '\n---\n';
body += '*Bundle size check powered by PhilJS size monitoring*';
// Post comment
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: body
});
- name: Upload bundle size results
uses: actions/upload-artifact@v4
if: always()
with:
name: bundle-size-results
path: bundle-size-results.json
retention-days: 30
- name: Fail if regressions detected
if: github.event_name == 'pull_request'
run: |
if ! node scripts/check-budgets.mjs --compare --ci; then
echo "Bundle size check failed - see report above"
exit 1
fi
- name: Commit updated baseline
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add metrics/bundle-size-baseline.json metrics/bundle-size-history.json
git diff --staged --quiet || git commit -m "Update bundle size baseline [skip ci]"
git push