Skip to content

Commit 040f1a2

Browse files
authored
Drop Node.js 12 support (#66)
Node.js 12 was End Of Line last month on April 30, 2022
1 parent 536bc2f commit 040f1a2

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Install Node
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v3
2323
with:
24-
node-version: 12.x
24+
node-version: 14.x
2525
cache: yarn
2626
- name: Install Dependencies
2727
run: until yarn install --frozen-lockfile; do echo "Retrying yarn"; done
@@ -41,9 +41,9 @@ jobs:
4141

4242
steps:
4343
- uses: actions/checkout@v2
44-
- uses: actions/setup-node@v2
44+
- uses: actions/setup-node@v3
4545
with:
46-
node-version: 12.x
46+
node-version: 14.x
4747
cache: yarn
4848
- name: Install Dependencies
4949
# Absurdly, yarn always fails on the first try here.
@@ -78,9 +78,9 @@ jobs:
7878
steps:
7979
- uses: actions/checkout@v2
8080
- name: Install Node
81-
uses: actions/setup-node@v2
81+
uses: actions/setup-node@v3
8282
with:
83-
node-version: 12.x
83+
node-version: 14.x
8484
cache: yarn
8585
- name: Install Dependencies
8686
run: until yarn install --frozen-lockfile; do echo "Retrying yarn"; done

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This addon provides an API for authoring a [Router service](https://api.emberjs.
1111

1212
* Ember.js v3.12 or above
1313
* Ember CLI v3.24 or above
14-
* Node.js v12 or above
14+
* Node.js v14 or above
1515

1616

1717
## Installation

addon/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"rollup": "^2.70.1"
4646
},
4747
"engines": {
48-
"node": "12.* || 14.* || >= 16"
48+
"node": "14.* || 16.* || >= 18"
4949
},
5050
"publishConfig": {
5151
"registry": "https://registry.npmjs.org"

package.json

+4
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,9 @@
5353
"tokenRef": "GITHUB_AUTH"
5454
},
5555
"npm": false
56+
},
57+
"volta": {
58+
"node": "14.19.2",
59+
"yarn": "1.22.18"
5660
}
5761
}

test-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"webpack": "^5.68.0"
7878
},
7979
"engines": {
80-
"node": "12.* || 14.* || >= 16"
80+
"node": "14.* || 16.* || >= 18"
8181
},
8282
"changelog": {
8383
"repo": "villander/ember-engines-router-service",

0 commit comments

Comments
 (0)