Skip to content

Commit

Permalink
chore: update Node.js in CI workflows (nodejs#584)
Browse files Browse the repository at this point in the history
- Use latest LTS for lint job
- Add version 17.x to test matrix
  • Loading branch information
targos authored Oct 31, 2021
1 parent f28ec2d commit a23a96e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14
- name: Use latest Node.js LTS
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: lts/*
- name: Install dependencies
run: npm install
- name: Lint
Expand All @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x, 17.x]
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit a23a96e

Please sign in to comment.