Skip to content

Commit 11a9b3d

Browse files
committed
update test deploy to check on node 20, 22, 24
1 parent 48f8b82 commit 11a9b3d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test-deploy.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,16 @@ jobs:
1212
test-deploy:
1313
name: Test deployment
1414
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
node-version: [20, 22, 24]
1518
steps:
1619
- uses: actions/checkout@v4
1720
with:
1821
fetch-depth: 0
1922
- uses: actions/setup-node@v4
2023
with:
21-
node-version: 20
24+
node-version: ${{ matrix.node-version }}
2225
cache: npm
2326

2427
- name: Install dependencies

0 commit comments

Comments
 (0)