Skip to content

Commit

Permalink
Merge pull request #691 from ain/nodejs-v16-support-eol
Browse files Browse the repository at this point in the history
Remove Node.js v16 support as per Node roadmap
  • Loading branch information
ain authored Oct 25, 2023
2 parents 73198bd + e4a1d18 commit 1cf66a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [16, 17, 18, 19, 20]
node: [17, 18, 19, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
Expand Down Expand Up @@ -54,8 +54,8 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
needs: test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
Expand Down

0 comments on commit 1cf66a3

Please sign in to comment.