Skip to content

Commit 66c6d6a

Browse files
w666vm-orbit
andauthored
Run MR pipeline against supported node.js runtimes 20, 22 and 24 (#1417)
Close #1406 Co-authored-by: Vasily Martynov <[email protected]>
1 parent 22fe8d6 commit 66c6d6a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ jobs:
44
code-quality:
55
runs-on: ubuntu-latest
66
timeout-minutes: 5
7+
strategy:
8+
matrix:
9+
node-version: ['20.x', '22.x', '24.x']
710
steps:
811
- uses: actions/checkout@v6
912
- uses: actions/setup-node@v6
1013
with:
11-
node-version: lts/*
14+
node-version: ${{ matrix.node-version }}
1215
- run: npm ci
1316
- run: npm run build
1417
- run: npm run lint

0 commit comments

Comments
 (0)