-
Notifications
You must be signed in to change notification settings - Fork 180
212 lines (201 loc) · 6.33 KB
/
Copy pathpullrequest.yml
File metadata and controls
212 lines (201 loc) · 6.33 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
name: Pull Request
on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- "*.md"
- ".changeset/**"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
- uses: ./.github/actions/vite-task-cache
- run: vp run build:kumo
- uses: actions/upload-artifact@v4
with:
name: kumo-dist
path: packages/kumo/dist
retention-days: 1
- uses: actions/upload-artifact@v4
with:
name: kumo-ai
path: packages/kumo/ai
retention-days: 1
bundle-report:
needs: build
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
- uses: actions/download-artifact@v4
with:
name: kumo-dist
path: packages/kumo/dist
- uses: actions/download-artifact@v4
with:
name: kumo-ai
path: packages/kumo/ai
- run: vp exec tsx ci/scripts/write-bundle-size-report.ts
- uses: actions/upload-artifact@v4
with:
name: bundle-size-report
path: ci/reports
retention-days: 7
format:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
- run: vp run format:check
lint:
needs: build
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
- uses: actions/download-artifact@v4
with:
name: kumo-dist
path: packages/kumo/dist
- uses: actions/download-artifact@v4
with:
name: kumo-ai
path: packages/kumo/ai
- uses: ./.github/actions/vite-task-cache
# kumo-figma imports generated JSON data; type-aware lint needs it
- run: vp run gen:figma-data
- run: vp run --filter @cloudflare/kumo lint:oxlint
- run: vp lint packages/*/src
typecheck:
needs: build
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
- uses: actions/download-artifact@v4
with:
name: kumo-dist
path: packages/kumo/dist
- uses: actions/download-artifact@v4
with:
name: kumo-ai
path: packages/kumo/ai
- run: vp run typecheck
- run: vp run ci:typecheck
test:
needs: build
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
- uses: actions/download-artifact@v4
with:
name: kumo-dist
path: packages/kumo/dist
- uses: actions/download-artifact@v4
with:
name: kumo-ai
path: packages/kumo/ai
- run: vp run --filter @cloudflare/kumo test
- run: vp run test:ci
visual-contracts:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
with:
filter: "@cloudflare/kumo"
- name: Install Chromium
working-directory: packages/kumo
run: vp exec playwright install --with-deps chromium
- name: Run visual contracts
run: vp run --filter @cloudflare/kumo test:visual-contracts
- name: Upload visual-contract artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: visual-contract-artifacts
path: packages/kumo/.vitest-attachments/
if-no-files-found: ignore
retention-days: 7
test-react-compatibility:
needs: build
timeout-minutes: 5
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- react-version: "18.3.1"
types-react-version: "18.3.12"
types-react-dom-version: "18.3.1"
- react-version: "19.2.0"
types-react-version: "19.2.4"
types-react-dom-version: "19.2.3"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
- name: Install React ${{ matrix.react-version }} test dependencies
env:
REACT_VERSION: ${{ matrix.react-version }}
TYPES_REACT_VERSION: ${{ matrix.types-react-version }}
TYPES_REACT_DOM_VERSION: ${{ matrix.types-react-dom-version }}
run: |
overrides="$(vp pm config get overrides --json)"
overrides="$(OVERRIDES="$overrides" node -e '
const overrides = JSON.parse(process.env.OVERRIDES ?? "{}");
Object.assign(overrides, {
react: process.env.REACT_VERSION,
"react-dom": process.env.REACT_VERSION,
"@types/react": process.env.TYPES_REACT_VERSION,
"@types/react-dom": process.env.TYPES_REACT_DOM_VERSION,
});
process.stdout.write(JSON.stringify(overrides));
')"
vp pm config set --location=project --json overrides "$overrides"
vp install --no-frozen-lockfile --ignore-scripts --filter "@cloudflare/kumo..."
- uses: actions/download-artifact@v4
with:
name: kumo-dist
path: packages/kumo/dist
- uses: actions/download-artifact@v4
with:
name: kumo-ai
path: packages/kumo/ai
- name: Verify React test versions
run: |
cd packages/kumo
node -e "if (require('react/package.json').version !== '${{ matrix.react-version }}') process.exit(1)"
node -e "if (require('react-dom/package.json').version !== '${{ matrix.react-version }}') process.exit(1)"
- run: vp run --filter @cloudflare/kumo typecheck
- run: vp run --filter @cloudflare/kumo test