Skip to content

Commit 5d8f0e9

Browse files
committed
cicd: fix node versioning
1 parent 55bce14 commit 5d8f0e9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
- uses: pnpm/action-setup@v2
2020
with:
2121
version: 8
22-
- uses: actions/setup-node@v4
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v4
2324
with:
24-
node-version: 20.x
25+
node-version: ${{ matrix.node-version }}
2526
cache: pnpm
2627
- run: pnpm i
2728
- name: types

0 commit comments

Comments
 (0)