-
-
Notifications
You must be signed in to change notification settings - Fork 698
206 lines (170 loc) · 5.76 KB
/
build.yml
File metadata and controls
206 lines (170 loc) · 5.76 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
name: build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, edited]
env:
NX_SELF_HOSTED_REMOTE_CACHE_ACCESS_TOKEN: ${{ secrets.NX_SELF_HOSTED_REMOTE_CACHE_ACCESS_TOKEN }}
NX_SELF_HOSTED_REMOTE_CACHE_SERVER: ${{ secrets.NX_SELF_HOSTED_REMOTE_CACHE_SERVER }}
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 100
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v4
with:
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
node-version-file: ".nvmrc"
- name: Cache NX
uses: actions/cache@v4
with:
path: .nx/cache
key: nx-${{ env.NX_BRANCH }}-${{ env.NX_RUN_GROUP }}-${{ github.sha }}
restore-keys: |
nx-${{ env.NX_BRANCH }}-${{ env.NX_RUN_GROUP }}-
nx-${{ env.NX_BRANCH }}-
nx-
# This is needed for the canvas dep, Tiptap V3 should remove the need for this
- run: sudo apt-get update && sudo apt-get install -y build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev pkg-config
- name: Install Dependencies
run: pnpm install
- name: Lint packages
run: pnpm run lint
- name: Build packages
run: pnpm run build
- name: Run unit tests
run: pnpm run test
- name: Upload webpack stats artifact (editor)
uses: relative-ci/agent-upload-artifact-action@v2
with:
webpackStatsFile: ./playground/dist/webpack-stats.json
artifactName: relative-ci-artifacts-editor
- name: Soft release
id: soft-release
run: pnpx pkg-pr-new publish './packages/*' # TODO disabled only for AI branch--compact
playwright-build:
name: "Playwright Build"
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 100
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v4
with:
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
node-version-file: ".nvmrc"
- name: Cache NX
uses: actions/cache@v4
with:
path: .nx/cache
key: nx-playwright-${{ env.NX_BRANCH }}-${{ env.NX_RUN_GROUP }}-${{ github.sha }}
restore-keys: |
nx-playwright-${{ env.NX_BRANCH }}-${{ env.NX_RUN_GROUP }}-
nx-playwright-${{ env.NX_BRANCH }}-
nx-
- run: sudo apt-get update && sudo apt-get install -y build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev pkg-config
- name: Install dependencies
run: pnpm install
- name: Build packages
run: pnpm run build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: playwright-build
path: |
packages/*/dist
playground/dist
retention-days: 1
playwright:
name: "Playwright Tests - ${{ matrix.browser }} (${{ matrix.shardIndex }}/${{ matrix.shardTotal }})"
runs-on: ubuntu-latest
needs: playwright-build
timeout-minutes: 30
container:
image: mcr.microsoft.com/playwright:v1.51.1-noble
strategy:
fail-fast: false
matrix:
browser: [chromium, firefox, webkit]
shardIndex: [1, 2]
shardTotal: [2]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 100
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
node-version-file: ".nvmrc"
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: playwright-build
- name: Install dependencies
run: pnpm install
- name: Run server and Playwright tests
run: |
HOME=/root PLAYWRIGHT_CONFIG="--project ${{ matrix.browser }} --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}" pnpm run e2e
- name: Upload blob report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: blob-report-${{ matrix.browser }}-${{ matrix.shardIndex }}
path: tests/blob-report/
retention-days: 1
- name: Upload HTML report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report-${{ matrix.browser }}-${{ matrix.shardIndex }}
path: tests/playwright-report/
retention-days: 30
merge-reports:
name: "Merge Playwright Reports"
if: ${{ !cancelled() }}
needs: playwright
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
node-version-file: ".nvmrc"
- name: Install dependencies
run: pnpm install
- name: Download blob reports
uses: actions/download-artifact@v4
with:
path: tests/all-blob-reports
pattern: blob-report-*
merge-multiple: true
- name: Merge reports
run: npx playwright merge-reports --reporter html ./all-blob-reports
working-directory: tests
- name: Upload merged HTML report
uses: actions/upload-artifact@v4
with:
name: playwright-report-merged
path: tests/playwright-report/
retention-days: 30