Skip to content

Commit 57371b5

Browse files
chore: simplify Node.js version matrix in GitHub Actions workflows
- Updated Node.js version matrix in the GitHub Actions workflows for baseline, test, and compare jobs to only include versions 18 and 26, removing versions 20, 22, and 24 for streamlined testing.
1 parent aa3be6b commit 57371b5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Run Baseline Load Tests (node ${{ matrix.node }})
1616
strategy:
1717
matrix:
18-
node: [18, 20, 22, 24, 26]
18+
node: [18, 26]
1919
uses: ./.github/workflows/load.yml
2020
with:
2121
gitRef: ${{ github.event.pull_request.base.sha }}
@@ -26,7 +26,7 @@ jobs:
2626
name: Run Test Load Tests (node ${{ matrix.node }})
2727
strategy:
2828
matrix:
29-
node: [18, 20, 22, 24, 26]
29+
node: [18, 26]
3030
uses: ./.github/workflows/load.yml
3131
with:
3232
gitRef: ${{ github.event.pull_request.head.sha }}
@@ -38,7 +38,7 @@ jobs:
3838
needs: [baseline, test]
3939
strategy:
4040
matrix:
41-
node: [18, 20, 22, 24, 26]
41+
node: [18, 26]
4242
uses: ./.github/workflows/compare.yml
4343
with:
4444
gitRef: ${{ github.event.pull_request.head.sha }}

0 commit comments

Comments
 (0)