-
-
Notifications
You must be signed in to change notification settings - Fork 741
201 lines (175 loc) · 7.67 KB
/
Copy pathbuild.yml
File metadata and controls
201 lines (175 loc) · 7.67 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
name: build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, edited]
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 100
persist-credentials: false
- uses: voidzero-dev/setup-vp@2dec1e33f4ab2c6d5bce1b0c4607961bb1a3f7a1 # v1
with:
node-version-file: ".node-version"
cache: true
- name: Install Dependencies
run: vp install
- name: Lint packages
run: vp lint
- name: Build packages
run: vp run -r build
- name: Run unit tests
run: vp run -r test
- name: Run Next.js integration test (production build)
run: NEXTJS_TEST_MODE=build vp test run src/unit/nextjs/serverUtil.test.ts
working-directory: tests
- name: Upload webpack stats artifact (editor)
uses: relative-ci/agent-upload-artifact-action@a2b5741b4f7e6a989c84ec1a3059696b23c152e5 # v2
with:
webpackStatsFile: ./playground/dist/webpack-stats.json
artifactName: relative-ci-artifacts-editor
- name: Soft release
id: soft-release
run: vp dlx pkg-pr-new publish './packages/*' # TODO disabled only for AI branch--compact
e2e:
# Vitest Browser Mode runs in the Playwright Linux container — the same
# environment as the local Docker run — so behaviour matches local dev.
# The suite resolves every `@blocknote/*` import to its `src/` via the
# aliases in `tests/vite.config.browser.ts` (vite transpiles the package
# sources on the fly), so the packages do NOT need to be built to `dist`
# first — `vp install` + the checked-out sources are enough.
name: "E2E - ${{ matrix.browser }} (${{ matrix.shardIndex }}/${{ matrix.shardTotal }})"
runs-on: ubuntu-latest
timeout-minutes: 30
container:
image: mcr.microsoft.com/playwright:v1.60.0-noble
strategy:
fail-fast: false
matrix:
browser: [chromium, firefox, webkit]
shardIndex: [1, 2]
shardTotal: [2]
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 100
persist-credentials: false
- uses: voidzero-dev/setup-vp@2dec1e33f4ab2c6d5bce1b0c4607961bb1a3f7a1 # v1
with:
node-version-file: ".node-version"
cache: true
- name: Install dependencies
run: vp install
# No preview server: Vitest Browser Mode serves the tests + mounted example
# apps itself. `--browser` selects this matrix job's browser and
# `--shard=<index>/<total>` splits that browser's test files across two
# parallel machines. Each shard records a machine-readable `blob` report
# (named per browser+shard so they don't collide); the `merge-reports` job
# stitches every browser's shards into one HTML report afterwards.
- name: Run e2e tests (${{ matrix.browser }} ${{ matrix.shardIndex }}/${{ matrix.shardTotal }})
run: HOME=/root vp test -c vite.config.browser.ts --run --browser ${{ matrix.browser }} --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --reporter=default --reporter=blob --outputFile.blob=blob-report/blob-${{ matrix.browser }}-${{ matrix.shardIndex }}.json
working-directory: tests
- name: Upload blob report (${{ matrix.browser }} ${{ matrix.shardIndex }}/${{ matrix.shardTotal }})
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: ${{ !cancelled() }}
with:
name: blob-report-${{ matrix.browser }}-${{ matrix.shardIndex }}
path: tests/blob-report/
retention-days: 1
- name: Upload failure artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: ${{ failure() }}
with:
name: e2e-attachments-${{ matrix.browser }}-${{ matrix.shardIndex }}
path: tests/.vitest-attachments/
retention-days: 7
merge-reports:
# Stitch every browser+shard blob report into a single navigable HTML
# report (the Vitest equivalent of `playwright merge-reports`). Runs even
# when a shard failed, so the report always covers every browser.
name: "E2E Report"
runs-on: ubuntu-latest
needs: e2e
if: ${{ !cancelled() }}
timeout-minutes: 15
# Same container as the e2e shards: `--mergeReports` doesn't run tests or
# launch browsers, but the HTML reporter still resolves the test files'
# browser environment, so the browser config must stay enabled (and present).
container:
image: mcr.microsoft.com/playwright:v1.60.0-noble
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 100
persist-credentials: false
- uses: voidzero-dev/setup-vp@2dec1e33f4ab2c6d5bce1b0c4607961bb1a3f7a1 # v1
with:
node-version-file: ".node-version"
cache: true
- name: Install dependencies
run: vp install
# Gather every shard's blob into one directory (blob-report-chromium-1, …).
- name: Download blob reports
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
path: tests/blob-report
pattern: blob-report-*
merge-multiple: true
# Re-emit a single HTML report from the merged blobs (no tests are run).
- name: Merge into HTML report
run: HOME=/root vp test -c vite.config.browser.ts --mergeReports=blob-report --reporter=html
working-directory: tests
- name: Upload merged HTML report
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: ${{ !cancelled() }}
with:
name: e2e-report
path: tests/playwright-report/
retention-days: 7
deploy-report:
# Publish the merged report to a GitHub Pages PR preview and comment the
# link on the PR (Vercel-style). Pages serves it over HTTP, so the report's
# data loads correctly — unlike opening the downloaded artifact over file://
# (the @vitest/ui report fetches its data and is blocked by CORS there).
#
# Default `needs` semantics: this runs only when `merge-reports` succeeded
# (i.e. a report exists) — but regardless of whether the tests passed, so a
# red run still gets a navigable preview. Skipped for fork PRs, whose
# read-only token can't push to gh-pages or comment (they keep the artifact).
name: "E2E Report Preview"
runs-on: ubuntu-latest
needs: merge-reports
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository }}
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
persist-credentials: false
- name: Download merged report
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: e2e-report
path: e2e-report
# Deploys to the `gh-pages` branch under `pr-preview/pr-<N>/` and posts a
# sticky comment with the URL. The companion `pr-preview-cleanup` workflow
# removes it when the PR closes.
- name: Deploy report to PR preview
uses: rossjrw/pr-preview-action@ffa7509e91a3ec8dfc2e5536c4d5c1acdf7a6de9 # v1
with:
source-dir: e2e-report
preview-branch: gh-pages
umbrella-dir: pr-preview
action: deploy