Skip to content

Commit 6bf8558

Browse files
authored
Merge pull request #52 from zanerock/work-liquid-labs/regex-repo/51
Drop CI/CD test for node 19 and add node 22
2 parents 7e39f4b + 5e6c16e commit 6bf8558

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/unit-tests-node.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [ 18.x, 19.x, 20.x ]
16+
node-version: [ 14.x, 16.x, 18.x, 20.x, 22.x ]
1717
os: [ ubuntu-latest, windows-latest, macos-latest ]
18+
include:
19+
- os: macos-latest
20+
node-version: 14.x
21+
architecture: x64
1822

1923
steps:
20-
- uses: actions/checkout@v3
21-
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v3
23-
with:
24-
node-version: ${{ matrix.node-version }}
24+
- uses: actions/checkout@v4
25+
- name: Node ${{ matrix.node-version }}/${{ matrix.architecture }} on ${{ matrix.os }}
26+
uses: actions/setup-node@v4
2527
- run: npm ci
2628
- run: npm run build --if-present
2729
- run: npm test

0 commit comments

Comments
 (0)