Skip to content

Commit

Permalink
drop support for node < 16
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Feb 7, 2024
1 parent db65a05 commit 08b5f45
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20
cache: npm
- uses: mansona/npm-lockfile-version@v1
- run: npm i -g npm@7
- run: npm ci
- run: npm run lint:js

Expand All @@ -37,16 +37,15 @@ jobs:
- ubuntu-latest
- windows-latest
node-version:
- 10
- 12
- 14
- 16
- 18
- 20

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i -g npm@7
cache: npm
- run: npm ci
- run: npm test

0 comments on commit 08b5f45

Please sign in to comment.