Skip to content

Commit

Permalink
ci: drop testing on unsupported node version 14.x, add 20.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox committed Sep 10, 2023
1 parent 582e4d6 commit 9591b63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

runs-on: ubuntu-latest
env:
node-version: 18.x
node-version: 20.x

steps:
- name: Checkout project
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [14.x, 16.x, 18.x]
node: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand All @@ -24,8 +24,6 @@ jobs:
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Upgrade NPM
run: npm install -g npm
- name: Install packages
run: npm ci
- name: Build project
Expand Down

0 comments on commit 9591b63

Please sign in to comment.