Skip to content

Commit

Permalink
feat: drop support for node < 10
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for Node < 10
  • Loading branch information
austince committed Feb 26, 2021
1 parent 04ebb3d commit 233118b
Show file tree
Hide file tree
Showing 3 changed files with 15,167 additions and 59 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -15,15 +15,16 @@ jobs:
strategy:
matrix:
node_version:
- 8 # to be removed 2020-01
- 10 # to be removed 2021-01
- 10 # to be removed 2021-05
- 12 # to be removed 2022-05
- 14 # to be removed 2023-05
- x.x.x # safety net; don't remove
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- run: npm i -g npm@6 && npm ci
- run: npm ci
- run: npm test
- uses: coverallsapp/github-action@v1.0.1
with:
Expand All @@ -37,9 +38,9 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm i -g npm@6 && npm ci
- run: npm ci
- run: npm run release
if: ${{ github.event_name == 'push' }}
env:
Expand Down

0 comments on commit 233118b

Please sign in to comment.