Skip to content

Commit 01a98ce

Browse files
committed
ci: use only Node.js 24 in GitHub Actions
Replace the Node 20.x/22.x matrix with a single Node.js 24.x target. https://claude.ai/code/session_01G4PnXbfvKUTnQhVbJA1wcw
1 parent e536bea commit 01a98ce

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,14 @@ jobs:
1212

1313
runs-on: ubuntu-latest
1414

15-
strategy:
16-
matrix:
17-
node-version: [20.x, 22.x]
18-
1915
steps:
2016
- uses: actions/checkout@v4
2117
- name: Install pnpm
2218
uses: pnpm/action-setup@v4
23-
- name: Use Node.js ${{ matrix.node-version }}
19+
- name: Use Node.js 24.x
2420
uses: actions/setup-node@v4
2521
with:
26-
node-version: ${{ matrix.node-version }}
22+
node-version: 24.x
2723
cache: 'pnpm'
2824
- run: pnpm install
2925
- run: pnpm tsc

0 commit comments

Comments
 (0)