We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf539c commit 9308bedCopy full SHA for 9308bed
.github/workflows/test-js.yml
@@ -73,6 +73,23 @@ jobs:
73
- run: npm install
74
- run: npm run build --if-present
75
- 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
93
bun:
94
needs: node_22
95
name: Bun
0 commit comments