Skip to content

Commit e287202

Browse files
committed
Drop support for Node 10 and 15
1 parent 6e91146 commit e287202

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
test:
14-
name: Node 12.x - ubuntu
14+
name: Node 16.x - ubuntu
1515
runs-on: ubuntu-latest
1616
timeout-minutes: 10
1717

@@ -35,12 +35,12 @@ jobs:
3535
strategy:
3636
matrix:
3737
os: [ubuntu, windows]
38-
node-version: [10.x, 12.x, 14.x]
38+
node-version: [12.x, 14.x, 16.x, 17.x]
3939

4040
# excluded because it is the `test` job above
4141
exclude:
4242
- os: ubuntu
43-
node-version: 12.x
43+
node-version: 16.x
4444

4545
steps:
4646
- uses: actions/checkout@v2
@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions/checkout@v2
6565
- uses: volta-cli/action@v1
6666
with:
67-
node-version: 12.x
67+
node-version: 16.x
6868

6969
- name: install dependencies
7070
run: yarn install --no-lockfile

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"prettier": "^2.3.1"
4545
},
4646
"engines": {
47-
"node": "10.* || 12.* || >= 14.*"
47+
"node": "12.* || 14.* || >= 16.*"
4848
},
4949
"dependencies": {
5050
"prettier-linter-helpers": "^1.0.0"

0 commit comments

Comments
 (0)