-
Notifications
You must be signed in to change notification settings - Fork 6
422 lines (384 loc) · 15.3 KB
/
pipeline.yml
File metadata and controls
422 lines (384 loc) · 15.3 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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
name: Pipeline
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
schedule:
- cron: "0 6 * * *" # notify discoveries (daily)
- cron: "0 0 * * *" # unlock solarhealth (daily)
- cron: "0 14 * * 6" # delete anomaly log (weekly)
- cron: "0 21 * * 0" # codeql (weekly)
workflow_dispatch:
inputs:
run_notify_discoveries:
description: "Run discovery notification maintenance job"
required: false
default: false
type: boolean
run_unlock_solarhealth:
description: "Run solarhealth unlock maintenance job"
required: false
default: false
type: boolean
run_delete_anomaly_log:
description: "Run anomaly log cleanup maintenance job"
required: false
default: false
type: boolean
run_community_event_notify:
description: "Run community event push notification job"
required: false
default: false
type: boolean
community_event_title:
description: "Community event notification title"
required: false
default: "Community event"
type: string
community_event_message:
description: "Community event notification message"
required: false
default: "A new community event is live."
type: string
community_event_url:
description: "URL to open from notification"
required: false
default: "/game"
type: string
community_event_dry_run:
description: "If true, do not send notifications; only produce a report."
required: false
default: true
type: boolean
permissions:
contents: read
concurrency:
group: pipeline-${{ github.ref }}
cancel-in-progress: true
jobs:
test_suite:
if: github.event_name != 'schedule'
runs-on: ubuntu-latest
env:
NODE_ENV: test
SKIP_USER_CREATION_TESTS: "true"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"
- name: Install dependencies
run: |
yarn lock:check
yarn install --frozen-lockfile
- name: Setup Supabase CLI
uses: supabase/setup-cli@v1
with:
version: latest
- name: Start local Supabase
run: supabase start
- name: Normalize local test env defaults
run: |
SUPABASE_URL="${SUPABASE_URL:-${{ vars.SUPABASE_URL }}}"
NEXT_PUBLIC_SUPABASE_URL="${NEXT_PUBLIC_SUPABASE_URL:-${{ vars.NEXT_PUBLIC_SUPABASE_URL }}}"
NEXT_PUBLIC_SUPABASE_ANON_KEY="${NEXT_PUBLIC_SUPABASE_ANON_KEY:-${{ vars.NEXT_PUBLIC_SUPABASE_ANON_KEY }}}"
SUPABASE_SERVICE_ROLE_KEY="${SUPABASE_SERVICE_ROLE_KEY:-${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}}"
DATABASE_URL="${DATABASE_URL:-}"
SUPABASE_URL="${SUPABASE_URL:-http://127.0.0.1:54321}"
NEXT_PUBLIC_SUPABASE_URL="${NEXT_PUBLIC_SUPABASE_URL:-http://127.0.0.1:54321}"
STATUS_ENV="$(supabase status -o env 2>/dev/null || true)"
if [ -n "${STATUS_ENV}" ]; then
LOCAL_DB_URL="$(printf '%s\n' "${STATUS_ENV}" | sed -n 's/^DB_URL=//p' | tail -n1 | sed 's/^"//; s/"$//')"
LOCAL_PUBLISHABLE="$(printf '%s\n' "${STATUS_ENV}" | sed -n 's/^ANON_KEY=//p' | tail -n1 | sed 's/^"//; s/"$//')"
LOCAL_SECRET="$(printf '%s\n' "${STATUS_ENV}" | sed -n 's/^SERVICE_ROLE_KEY=//p' | tail -n1 | sed 's/^"//; s/"$//')"
if [ -z "${LOCAL_PUBLISHABLE}" ]; then
LOCAL_PUBLISHABLE="$(printf '%s\n' "${STATUS_ENV}" | sed -n 's/^PUBLISHABLE_KEY=//p' | tail -n1 | sed 's/^"//; s/"$//')"
fi
if [ -z "${LOCAL_SECRET}" ]; then
LOCAL_SECRET="$(printf '%s\n' "${STATUS_ENV}" | sed -n 's/^SECRET_KEY=//p' | tail -n1 | sed 's/^"//; s/"$//')"
fi
fi
if [ -z "${LOCAL_PUBLISHABLE}" ] || [ -z "${LOCAL_SECRET}" ]; then
STATUS_TEXT="$(supabase status)"
LOCAL_PUBLISHABLE="$(printf '%s\n' "${STATUS_TEXT}" | sed -n 's/^| Publishable | \(.*\) |$/\1/p' | tail -n1)"
LOCAL_SECRET="$(printf '%s\n' "${STATUS_TEXT}" | sed -n 's/^| Secret | \(.*\) |$/\1/p' | tail -n1)"
fi
DATABASE_URL="${DATABASE_URL:-$LOCAL_DB_URL}"
NEXT_PUBLIC_SUPABASE_ANON_KEY="${NEXT_PUBLIC_SUPABASE_ANON_KEY:-$LOCAL_PUBLISHABLE}"
SUPABASE_SERVICE_ROLE_KEY="${SUPABASE_SERVICE_ROLE_KEY:-$LOCAL_SECRET}"
if [ -z "${DATABASE_URL}" ] || [ -z "${NEXT_PUBLIC_SUPABASE_ANON_KEY}" ] || [ -z "${SUPABASE_SERVICE_ROLE_KEY}" ]; then
echo "Unable to resolve local Supabase database/auth env from supabase status." >&2
exit 1
fi
echo "DATABASE_URL=${DATABASE_URL}" >> "$GITHUB_ENV"
echo "SUPABASE_URL=${SUPABASE_URL}" >> "$GITHUB_ENV"
echo "NEXT_PUBLIC_SUPABASE_URL=${NEXT_PUBLIC_SUPABASE_URL}" >> "$GITHUB_ENV"
echo "NEXT_PUBLIC_SUPABASE_ANON_KEY=${NEXT_PUBLIC_SUPABASE_ANON_KEY}" >> "$GITHUB_ENV"
echo "SUPABASE_SERVICE_ROLE_KEY=${SUPABASE_SERVICE_ROLE_KEY}" >> "$GITHUB_ENV"
- name: Run unit tests
run: yarn test:unit
- name: Run unit tests with coverage
run: yarn test:unit --coverage
- name: Run lint
run: yarn lint
- name: Run E2E tests (minimal smoke for regular pushes)
if: github.event_name == 'push' && github.ref_name != 'main'
run: yarn test:e2e:smoke:minimal
- name: Run E2E tests (full suite for main branch pushes)
if: github.event_name == 'push' && github.ref_name == 'main'
run: yarn test:e2e
- name: Run E2E tests (full suite for PR to main)
if: >
github.event_name == 'pull_request' && github.base_ref == 'main'
run: yarn test:e2e
- name: Upload e2e coverage
if: >
always() && (
(github.event_name == 'pull_request' && github.base_ref == 'main')
)
uses: actions/upload-artifact@v4
with:
name: e2e-coverage
path: |
coverage-e2e
.nyc_output
- name: Upload Cypress artifacts
if: >
always() && (
(github.event_name == 'push' && github.ref_name == 'main') ||
(github.event_name == 'pull_request' && github.base_ref == 'main')
)
uses: actions/upload-artifact@v4
with:
name: cypress-artifacts
path: |
cypress/videos
cypress/screenshots
build_app:
if: github.event_name != 'schedule'
needs: test_suite
runs-on: ubuntu-latest
env:
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
VAPID_PUBLIC_KEY: ${{ secrets.VAPID_PUBLIC_KEY }}
VAPID_PRIVATE_KEY: ${{ secrets.VAPID_PRIVATE_KEY }}
DATABASE_URL: "postgresql://placeholder:placeholder@localhost:5432/placeholder"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"
- name: Install dependencies
run: |
yarn lock:check
yarn install --frozen-lockfile
- name: Build app
run: |
rm -rf .next
yarn build
- name: Check bundle budgets
run: yarn bundle:check
deploy_preview:
if: github.event_name == 'push' && github.ref_name != 'main'
needs: build_app
runs-on: ubuntu-latest
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"
- name: Pull Vercel Environment Information
run: npx vercel@latest pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ secrets.VERCEL_ORG_ID }}
- name: Build Project Artifacts
run: |
ATTEMPTS=3
for ATTEMPT in $(seq 1 "$ATTEMPTS"); do
echo "Vercel preview build attempt ${ATTEMPT}/${ATTEMPTS}"
if npx vercel@latest build --yes --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ secrets.VERCEL_ORG_ID }}; then
exit 0
fi
if [ "$ATTEMPT" -lt "$ATTEMPTS" ]; then
echo "Build failed (likely transient). Retrying in 20s..."
sleep 20
fi
done
echo "Vercel preview build failed after ${ATTEMPTS} attempts."
exit 1
- name: Deploy Project Artifacts to Vercel Staging
run: |
ATTEMPTS=3
for ATTEMPT in $(seq 1 "$ATTEMPTS"); do
echo "Vercel preview deploy attempt ${ATTEMPT}/${ATTEMPTS}"
if npx vercel@latest deploy --prebuilt --yes --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ secrets.VERCEL_ORG_ID }}; then
exit 0
fi
if [ "$ATTEMPT" -lt "$ATTEMPTS" ]; then
echo "Deploy failed (likely transient). Retrying in 20s..."
sleep 20
fi
done
echo "Vercel preview deploy failed after ${ATTEMPTS} attempts."
exit 1
deploy_production:
if: github.event_name == 'push' && github.ref_name == 'main'
needs: build_app
runs-on: ubuntu-latest
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"
- name: Pull Vercel Environment Information
run: npx vercel@latest pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ secrets.VERCEL_ORG_ID }}
- name: Build Project Artifacts
run: |
ATTEMPTS=3
for ATTEMPT in $(seq 1 "$ATTEMPTS"); do
echo "Vercel production build attempt ${ATTEMPT}/${ATTEMPTS}"
if npx vercel@latest build --prod --yes --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ secrets.VERCEL_ORG_ID }}; then
exit 0
fi
if [ "$ATTEMPT" -lt "$ATTEMPTS" ]; then
echo "Build failed (likely transient). Retrying in 20s..."
sleep 20
fi
done
echo "Vercel production build failed after ${ATTEMPTS} attempts."
exit 1
- name: Deploy Project Artifacts to Vercel
run: |
ATTEMPTS=3
for ATTEMPT in $(seq 1 "$ATTEMPTS"); do
echo "Vercel production deploy attempt ${ATTEMPT}/${ATTEMPTS}"
if npx vercel@latest deploy --prebuilt --prod --yes --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ secrets.VERCEL_ORG_ID }}; then
exit 0
fi
if [ "$ATTEMPT" -lt "$ATTEMPTS" ]; then
echo "Deploy failed (likely transient). Retrying in 20s..."
sleep 20
fi
done
echo "Vercel production deploy failed after ${ATTEMPTS} attempts."
exit 1
notify_unclassified_discoveries:
if: >
(github.event_name == 'schedule' && github.event.schedule == '0 6 * * *') ||
(github.event_name == 'workflow_dispatch' && inputs.run_notify_discoveries == true)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: |
yarn lock:check
yarn install --frozen-lockfile
- name: Send discovery notifications
env:
SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
NEXT_PUBLIC_VAPID_PUBLIC_KEY: ${{ secrets.VAPID_PUBLIC_KEY }}
VAPID_PRIVATE_KEY: ${{ secrets.VAPID_PRIVATE_KEY }}
SUPABASE_DB_URL: ${{ secrets.SUPABASE_DB_URL }}
run: node --experimental-strip-types scripts/notify-unclassified-discoveries.ts
unlock_solarhealth_anomalies:
if: >
(github.event_name == 'schedule' && github.event.schedule == '0 0 * * *') ||
(github.event_name == 'workflow_dispatch' && inputs.run_unlock_solarhealth == true) ||
(github.event_name == 'push' && contains(github.event.head_commit.message, 'SSM-257'))
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: |
yarn lock:check
yarn install --frozen-lockfile
- name: Unlock SolarHealth anomalies
env:
SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}
run: node --experimental-strip-types scripts/unlock-solarhealth-anomalies.ts
delete_push_anomaly_log:
if: >
(github.event_name == 'schedule' && github.event.schedule == '0 14 * * 6') ||
(github.event_name == 'workflow_dispatch' && inputs.run_delete_anomaly_log == true)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Install dependencies
run: go mod tidy
- name: Delete push anomaly log
env:
SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}
run: go run scripts/delete_push_anomaly_log.go
community_event_notify:
if: github.event_name == 'workflow_dispatch' && inputs.run_community_event_notify == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: |
yarn lock:check
yarn install --frozen-lockfile
- name: Send community event push notification (or dry run)
env:
SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}
NEXT_PUBLIC_VAPID_PUBLIC_KEY: ${{ secrets.VAPID_PUBLIC_KEY }}
VAPID_PRIVATE_KEY: ${{ secrets.VAPID_PRIVATE_KEY }}
COMMUNITY_EVENT_TITLE: ${{ inputs.community_event_title }}
COMMUNITY_EVENT_MESSAGE: ${{ inputs.community_event_message }}
COMMUNITY_EVENT_URL: ${{ inputs.community_event_url }}
DRY_RUN: ${{ inputs.community_event_dry_run }}
REPORT_PATH: community-event-report.json
run: node --experimental-strip-types scripts/notify-community-event.ts
- name: Upload community event report
if: always()
uses: actions/upload-artifact@v4
with:
name: community-event-report
path: community-event-report.json