-
Notifications
You must be signed in to change notification settings - Fork 2
246 lines (212 loc) · 11 KB
/
Copy pathci.yml
File metadata and controls
246 lines (212 loc) · 11 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
name: ci
on:
pull_request:
merge_group:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
full-pr:
# Fork PRs execute untrusted repository code. Keep them off Depot runners,
# which inject DEPOT_CACHE_TOKEN independently of GitHub secret filtering.
runs-on: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork && 'ubuntu-24.04' || 'depot-ubuntu-24.04-16' }}
timeout-minutes: 120
permissions:
contents: read
# Required to mint the OIDC token for Workload Identity Federation when
# authenticating to the Spanner test instance (trusted runs only).
id-token: write
env:
# Moon marks failed tasks by color alone, so a failed `moon ci` can end at
# "Tasks: 1 failed" with no named target. The summary names them in plain
# text and replays each failed task's own output. Green runs pay only a
# pass/fail list; the replay section is empty when nothing failed.
MOON_SUMMARY: detailed
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- uses: pnpm/action-setup@v5
with:
run_install: false
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: corepack pnpm install --frozen-lockfile
# Bare `moon` below is the workspace's own pinned @moonrepo/cli, so CI
# runs the exact version the lockfile resolves — same as local dev.
- name: Put workspace binaries on PATH
run: echo "$PWD/node_modules/.bin" >> "$GITHUB_PATH"
# A PR title is attacker-controlled text on a public repo, so it reaches the
# script through the environment — never interpolated into the shell body.
- name: Check PR title
if: ${{ github.event_name == 'pull_request' }}
env:
PR_TITLE: ${{ github.event.pull_request.title }}
BASE_SHA: ${{ github.event.pull_request.base.sha }}
run: node scripts/check-pr-title.mjs --title "$PR_TITLE" --base "$BASE_SHA" --summary
# Emits `mode`, per-lane affected gates (go_tests, snapshot,
# journey_fresh_app, journey_passkey, journey_testkit, suites_*,
# browsers), and the journey_matrix scope, computed from moon's
# affected task selection. Gates fail open — unclaimed files, empty
# diffs, and query failures all force a full run. Logic + tests:
# scripts/ci-mode.mjs.
- name: Detect CI mode
id: ci-mode
run: node scripts/ci-mode.mjs "${{ github.event.pull_request.base.sha || 'origin/main' }}"
- name: Check Go generated files
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.go_tests == 'true' }}
run: moon run server:check-generate
- name: Cache Playwright browsers
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.browsers == 'true' }}
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
- name: Install Playwright Chromium
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.browsers == 'true' }}
run: corepack pnpm --filter @zitadel/components exec playwright install chromium
- name: Run Moon build and test graph
id: moon-ci
if: ${{ steps.ci-mode.outputs.mode == 'full' }}
run: moon ci :lint :typecheck :build :test :test-browser :check-adrs
- name: Report Moon CI failures
if: ${{ failure() && steps.moon-ci.conclusion == 'failure' }}
run: node scripts/report-moon-failures.mjs
- name: Run Go tests
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.go_tests == 'true' }}
run: moon run server:test
- name: Run Go integration tests (postgres)
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.go_tests == 'true' }}
run: moon run server:test-postgres
# Auth when SPANNER_TEST_INSTANCE is set (trusted runs). Vars are safe in
# if:; secrets stay only in with:. Unset var / forks → emulator step.
# Auth hard-fails if the var is set but WIF is broken (no silent fallback).
- name: Authenticate to Google Cloud (Spanner test instance)
id: spanner-auth
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.go_tests == 'true' && (github.event_name != 'pull_request' || !github.event.pull_request.head.repo.fork) && vars.SPANNER_TEST_INSTANCE != '' }}
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }}
- name: Run Go integration tests (spanner emulator)
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.go_tests == 'true' && steps.spanner-auth.outcome != 'success' }}
run: moon run server:test-spanner
- name: Run Go integration tests (spanner test instance)
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.go_tests == 'true' && steps.spanner-auth.outcome == 'success' }}
env:
ZITADEL_TEST_SPANNER_INSTANCE: ${{ vars.SPANNER_TEST_INSTANCE }}
run: moon run server:test-spanner
- name: Run Go integration tests (sqlite)
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.go_tests == 'true' }}
run: moon run server:test-sqlite
# The snapshot exists here to feed the journeys, so it runs iff any
# journey does (the tarball handoff is a filesystem contract moon
# cannot see).
- name: Build release snapshot without container
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.snapshot == 'true' }}
run: env -u CI -u GITHUB_ACTIONS moon run release:snapshot -- --skip-container
# journey_matrix=single collapses the framework matrix to Next when no
# SDK, CLI, or journey surface moved — the flow widget is
# framework-independent, so a server-only change proves as much on one
# framework as on the full matrix (apps/cli-journey-e2e/scripts/frameworks.mjs).
- name: Run binary fresh-app journey
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.journey_fresh_app == 'true' }}
env:
JOURNEY_MATRIX: ${{ steps.ci-mode.outputs.journey_matrix }}
run: |
version="$(node -p "require('./apps/server/package.json').version")"
matrix_args=()
if [ "$JOURNEY_MATRIX" = "single" ]; then
matrix_args=(--framework next)
fi
env -u CI -u GITHUB_ACTIONS moon run cli-journey-e2e:e2e-local -- \
--runtime binary \
--concurrency 5 \
"${matrix_args[@]}" \
--work-dir "${RUNNER_TEMP}/ci-journey" \
--tarballs-dir "dist/release/${version}/npm"
# One framework is enough here: the preset decides the scaffolded
# flow shape, not the SDK — the matrix above already covers SDKs.
- name: Run passkey-first preset journey
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.journey_passkey == 'true' }}
run: |
version="$(node -p "require('./apps/server/package.json').version")"
env -u CI -u GITHUB_ACTIONS moon run cli-journey-e2e:e2e-local -- \
--runtime binary \
--framework next \
--preset passkey-first \
--work-dir "${RUNNER_TEMP}/ci-journey-passkey-first" \
--tarballs-dir "dist/release/${version}/npm"
# Customer-configuration proof for @zitadel/testing: a fresh app
# installs the kit from the journey registry and runs its withZitadel()
# suite against the published binary — embedded UIs, no repo env
# overrides (unlike the in-repo e2e-real lanes below).
- name: Run test-kit consumer journey
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.journey_testkit == 'true' }}
run: |
version="$(node -p "require('./apps/server/package.json').version")"
env -u CI -u GITHUB_ACTIONS moon run cli-journey-e2e:e2e-testkit -- \
--work-dir "${RUNNER_TEMP}/ci-journey-testkit" \
--tarballs-dir "dist/release/${version}/npm"
# Gates the test-kit's central promise: boot a real seeded instance,
# then drive the real browser login with per-test users. Reuses the Go
# build cache and Playwright Chromium installed above.
- name: Run @zitadel/testing real-instance suites
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.suites_testing_demo == 'true' }}
run: env -u CI -u GITHUB_ACTIONS moon run testing:test-integration demo-next-e2e:e2e-real
# Dogfoods @zitadel/testing through a second consumer. Keep this separate
# from the demo suite so two local-server instances do not contend.
- name: Run console real-instance suite
if: ${{ steps.ci-mode.outputs.mode == 'full' && steps.ci-mode.outputs.suites_console == 'true' }}
run: env -u CI -u GITHUB_ACTIONS moon run console-e2e:e2e-real
- name: Validate version PR
if: ${{ steps.ci-mode.outputs.mode == 'version-only' }}
run: env -u CI -u GITHUB_ACTIONS moon run release:version
- name: Pack version PR artifacts
if: ${{ steps.ci-mode.outputs.mode == 'version-only' }}
run: env -u CI -u GITHUB_ACTIONS moon run release:pack
- name: Verify version PR tarballs
if: ${{ steps.ci-mode.outputs.mode == 'version-only' }}
run: |
version="$(node -p "require('./apps/server/package.json').version")"
node apps/cli-journey-e2e/scripts/verify-tarballs.mjs "dist/release/${version}/npm"
- name: Upload release snapshot
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: release-snapshot
path: dist/release
if-no-files-found: ignore
retention-days: 7
- name: Upload journey diagnostics
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: journey-diagnostics
path: |
${{ runner.temp }}/ci-journey/diagnostics
${{ runner.temp }}/ci-journey-passkey-first/diagnostics
${{ runner.temp }}/ci-journey-testkit/diagnostics
if-no-files-found: ignore
retention-days: 7
# The handshake is deliberately excluded: it carries the project secret.
- name: Upload console e2e diagnostics
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: console-e2e-diagnostics
path: |
apps/console-e2e/test-results
apps/console-e2e/playwright-report
if-no-files-found: ignore
retention-days: 7