Skip to content

Commit 7449de2

Browse files
Marcinclaude
andcommitted
ci: add Node 22 to matrix and align with other integrations
Adds fail-fast: false and npm cache for parity with koa workflow. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent d705f3b commit 7449de2

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/pull-request.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
strategy:
12+
fail-fast: false
1213
matrix:
13-
node-version: [18.x, 20.x]
14+
node-version: [18.x, 20.x, 22.x]
1415
steps:
1516
- uses: actions/checkout@v4
16-
- uses: actions/setup-node@v4
17+
18+
- name: Setup Node
19+
uses: actions/setup-node@v4
1720
with:
1821
node-version: ${{ matrix.node-version }}
22+
cache: npm
23+
1924
- run: npm ci
2025
- run: npm test

0 commit comments

Comments
 (0)