-
Notifications
You must be signed in to change notification settings - Fork 1
244 lines (213 loc) · 9.19 KB
/
Copy pathci.yml
File metadata and controls
244 lines (213 loc) · 9.19 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
name: CI
on:
push:
branches: [main]
pull_request:
# Cancel in-flight runs for the same workflow + ref. Including
# `github.workflow` in the key keeps this from colliding with any other
# workflow that happens to share a ref-based group prefix.
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Least-privilege: this workflow only reads the repo to lint/build/verify; it
# never writes back. Anything that needs write scopes lives in a separate
# workflow with its own scoped permissions.
permissions:
contents: read
jobs:
ci:
name: Lint, build, verify
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
bun-version: 1.4.0
# Bun is the package manager and script runner, but Next.js (and tsc)
# run on Node. The runner image is pinned (ubuntu-24.04) but Node
# version inside it can still drift; pin via .nvmrc so a future
# GitHub bump can't break the build silently.
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: .nvmrc
# Cache Bun's resolved package store keyed on the lockfile hash. Cuts
# ~10s off `bun install` on a clean runner; the restore-key falls back
# to any prior cache from this OS so partial hits still help.
- name: Cache Bun install cache
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
# Cache Next.js's incremental build output. Keyed on lockfile + commit
# SHA so the exact-key match is always per-commit fresh; restore-keys
# fall back to any previous build on the same lockfile, then any build
# on this OS — so most CI runs hit a cache and skip rebuilding
# unchanged webpack modules.
- name: Cache Next.js build cache
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('bun.lock') }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('bun.lock') }}-
${{ runner.os }}-nextjs-
- name: Install
run: bun install --frozen-lockfile
- name: Lint + format check
run: bun run check:ci
# Build BEFORE typecheck: the build runs velite (populating .velite/
# which the `#site/content` path alias resolves to) and produces
# next-env.d.ts. tsc fails without these, so order matters here.
- name: Build
run: bun run build
- name: Type check
run: bun run typecheck
- name: Start server
run: |
bun run start > /tmp/server.log 2>&1 &
echo $! > /tmp/server.pid
for i in $(seq 1 30); do
if curl -sf http://localhost:3000 > /dev/null; then
echo "server ready"
exit 0
fi
sleep 1
done
echo "server failed to start in 30s"
cat /tmp/server.log
exit 1
- name: Verify endpoints
run: bun run verify
# Playwright browsers are ~250 MB. Cache them keyed on the
# @playwright/test version pinned in package.json — invalidates on
# bumps, hits otherwise. System deps (apt packages) aren't covered by
# the cache, so install those separately even on cache hit (~10s vs
# ~3min for the full install).
- name: Get Playwright version
id: playwright-version
run: |
VERSION=$(grep -oE '"@playwright/test": "[^"]+"' package.json | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}
- name: Install Playwright browsers (cache miss)
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: bunx playwright install --with-deps chromium webkit
- name: Install Playwright system deps (cache hit)
if: steps.playwright-cache.outputs.cache-hit == 'true'
run: bunx playwright install-deps chromium webkit
- name: Browser smoke tests
run: bun run test:e2e
- name: Upload Playwright report
if: failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: playwright-report
path: playwright-report/
retention-days: 7
- name: Stop server
if: always()
run: |
if [ -f /tmp/server.pid ]; then
kill $(cat /tmp/server.pid) 2>/dev/null || true
fi
- name: Server logs (on failure)
if: failure()
run: cat /tmp/server.log || true
# Reports dependency advisories WITHOUT gating merges. A new advisory can
# surface at any time from an upstream publish, with no change on our
# side, so a hard gate here blocks unrelated PRs on work we often cannot
# do (see CLAUDE.md "Audit advisories" for the upstream-blocked ones).
# `continue-on-error` on the step keeps the job green while still marking
# the step red and posting the full advisory list to the job summary, so
# the status stays visible on every run. Nothing is `--ignore`d: with no
# gate to keep green, suppressing advisories only hides information.
audit:
name: Dependency audit (non-blocking)
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
bun-version: 1.4.0
- name: Cache Bun install cache
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Install
run: bun install --frozen-lockfile
- name: Dependency audit
continue-on-error: true
run: |
bun audit | tee /tmp/audit.log
status=${PIPESTATUS[0]}
{
echo "## Dependency audit"
echo
if [ "$status" -eq 0 ]; then
echo "No advisories reported."
else
echo "Advisories reported. Informational only — this does not block merge."
echo
echo '```'
cat /tmp/audit.log
echo '```'
fi
} >> "$GITHUB_STEP_SUMMARY"
exit "$status"
# Runs only on PRs (no baseline diff to compute on a push to main).
# Compares the PR's dependency manifest against main and flags
# high-severity advisories or license incompatibilities. Hard-gated: the
# `bun audit` job is informational, so this is the one advisory check
# that blocks merge, and it is scoped to what the PR itself introduces
# (severity `high` and above) rather than the whole pre-existing tree.
dependency-review:
if: github.event_name == 'pull_request'
runs-on: ubuntu-24.04
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Dependency Review
uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
with:
fail-on-severity: high
comment-summary-in-pr: on-failure
# Defense-in-depth on top of GitHub's push protection. Push protection
# covers high-entropy / known-provider patterns at push time; TruffleHog
# re-scans diffs on PRs + push to main, catching secrets that slipped
# past push protection (low-entropy formats, detector patterns added
# after the secret was committed, or push-protection bypass via the
# "I'll fix it later" allow path).
secret-scan:
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
# TruffleHog diffs base..head and needs the full history present.
fetch-depth: 0
- name: TruffleHog scan
uses: trufflesecurity/trufflehog@20652fbbdefffcdaa493a5bf57ab2ac6b1db715b # v3.97.1
with:
# On PRs: scan the diff between base and head. On push to main:
# scan the previous commit to HEAD. The action infers both from
# the event context.
# --results=verified,unknown drops trufflehog's "unverified" tier
# (pattern-matched but couldn't reach the verifier endpoint) to
# keep noise down without losing coverage of secrets whose
# verifiers don't recognize them yet.
extra_args: --results=verified,unknown