Skip to content

Commit

Permalink
ci(node.js): build and test with even versions of Node.js (#6494)
Browse files Browse the repository at this point in the history
* ci(node.js): build and test with even versions of Node.js

* ci(node.js): remove 10.x version
  • Loading branch information
bytrangle authored and martinjagodic committed Oct 16, 2023
1 parent 0736034 commit f07c82e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node-version: [12.x, 14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
if: ${{ needs.changes.outputs.cms == 'true' }}
- name: Use Node.js
- name: Use Node.js {{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 18
node-version: ${{ matrix.node-version }}
check-latest: true
if: ${{ needs.changes.outputs.cms == 'true' }}
- name: log versions
Expand Down

0 comments on commit f07c82e

Please sign in to comment.