Skip to content

Commit

Permalink
Breaking: Drop Node 10 and other unmaintained versions (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmish committed Jul 2, 2021
1 parent f761f7e commit dc4a493
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -13,9 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '16.x'
- name: Install dependencies
run: npm install
- name: Lint files
Expand All @@ -25,14 +25,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [14.x, 13.x, 12.x, 10.x, 8.x]
node: [16.x, 14.x, 12.x]
include:
- os: windows-latest
node: "12.x"
node: "16.x"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -48,7 +48,7 @@
"yo": ">=1.0.0"
},
"engines": {
"node": ">=8"
"node": "12.x || 14.x || >= 16"
},
"license": "MIT"
}

0 comments on commit dc4a493

Please sign in to comment.