Skip to content

Commit 0aac310

Browse files
authored
ci(node.js): build and test with even versions of Node.js (#6494)
* ci(node.js): build and test with even versions of Node.js * ci(node.js): remove 10.x version
1 parent 2f0f9db commit 0aac310

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/nodejs.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ jobs:
2626
strategy:
2727
matrix:
2828
os: [macos-latest, windows-latest, ubuntu-latest]
29+
node-version: [12.x, 14.x, 16.x, 18.x]
2930
steps:
3031
- uses: actions/checkout@v3
3132
if: ${{ needs.changes.outputs.cms == 'true' }}
32-
- name: Use Node.js
33+
- name: Use Node.js {{ matrix.node-version }}
3334
uses: actions/setup-node@v3
3435
with:
35-
node-version: 18
36+
node-version: ${{ matrix.node-version }}
3637
check-latest: true
3738
if: ${{ needs.changes.outputs.cms == 'true' }}
3839
- name: log versions

0 commit comments

Comments
 (0)