Skip to content

Commit 6470150

Browse files
authored
Merge pull request #176 from ember-template-lint/drop-nodes
Drop support for Node 10 and 15
2 parents 6e91146 + 3ae9ad0 commit 6470150

2 files changed

Lines changed: 7 additions & 7 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
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"
5151
},
5252
"volta": {
53-
"node": "12.16.3",
54-
"yarn": "1.22.4"
53+
"node": "12.22.7",
54+
"yarn": "1.22.17"
5555
}
5656
}

0 commit comments

Comments
 (0)