-
Notifications
You must be signed in to change notification settings - Fork 2
175 lines (146 loc) · 6.46 KB
/
Copy pathci.yml
File metadata and controls
175 lines (146 loc) · 6.46 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
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
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: moonrepo/setup-toolchain@v0
- 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
- 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' }}
run: moon run server:check-generate
- name: Cache Playwright browsers
if: ${{ steps.ci-mode.outputs.mode == 'full' }}
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' }}
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
- 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' }}
run: moon run server:test
- name: Run Go integration tests (postgres)
if: ${{ steps.ci-mode.outputs.mode == 'full' }}
run: moon run server:test-postgres
- name: Run Go integration tests (spanner)
if: ${{ steps.ci-mode.outputs.mode == 'full' }}
run: moon run server:test-spanner
- name: Build release snapshot without container
if: ${{ steps.ci-mode.outputs.mode == 'full' }}
run: env -u CI -u GITHUB_ACTIONS moon run release:snapshot -- --skip-container
- name: Run binary fresh-app journey
if: ${{ steps.ci-mode.outputs.mode == 'full' }}
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 \
--concurrency 5 \
--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' }}
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"
# 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' }}
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 embedded-Postgres instances do not contend.
- name: Run console real-instance suite
if: ${{ steps.ci-mode.outputs.mode == 'full' }}
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
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