Skip to content

Commit 9308bed

Browse files
authored
chore: use Nodejs 24 in CI (#1432)
1 parent dbf539c commit 9308bed

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test-js.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,23 @@ jobs:
7373
- run: npm install
7474
- run: npm run build --if-present
7575
- run: npm test
76+
node_24:
77+
name: Node v${{ matrix.version }} @ ${{ matrix.os }}
78+
runs-on: ${{ matrix.os }}
79+
strategy:
80+
fail-fast: false
81+
matrix:
82+
version: [24]
83+
os: [ubuntu-latest, windows-latest, macOS-latest]
84+
steps:
85+
- uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4
86+
- name: Use Node.js ${{ matrix.version }}
87+
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4
88+
with:
89+
node-version: ${{ matrix.version }}
90+
- run: npm install
91+
- run: npm run build --if-present
92+
- run: npm test
7693
bun:
7794
needs: node_22
7895
name: Bun

0 commit comments

Comments
 (0)