Skip to content

Commit 97444b7

Browse files
authored
Update ci.yaml
ensure that our ci is running node-version 22 so the automated ci stops failing
1 parent 6cbb703 commit 97444b7

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/ci.yaml

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
name: ci
2-
32
on:
43
push:
54
branches: [main]
65
pull_request:
76
branches: [main]
8-
97
jobs:
108
check:
119
runs-on: ubuntu-latest
1210
steps:
1311
- uses: actions/checkout@v4
12+
1413
- uses: pnpm/action-setup@v3
1514
with:
1615
version: 9.4.0
17-
16+
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: '22'
20+
cache: 'pnpm'
21+
1822
- name: Install dependencies
1923
run: pnpm i
20-
24+
2125
- name: Run Prettier
2226
run: pnpm run prettier --check .
23-
27+
2428
- name: Build packages
2529
run: pnpm run build

0 commit comments

Comments
 (0)