We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22fe8d6 commit 66c6d6aCopy full SHA for 66c6d6a
1 file changed
.github/workflows/pr.yml
@@ -4,11 +4,14 @@ jobs:
4
code-quality:
5
runs-on: ubuntu-latest
6
timeout-minutes: 5
7
+ strategy:
8
+ matrix:
9
+ node-version: ['20.x', '22.x', '24.x']
10
steps:
11
- uses: actions/checkout@v6
12
- uses: actions/setup-node@v6
13
with:
- node-version: lts/*
14
+ node-version: ${{ matrix.node-version }}
15
- run: npm ci
16
- run: npm run build
17
- run: npm run lint
0 commit comments