Skip to content

Commit 71165a4

Browse files
authored
Merge pull request #435 from ember-learn/update-ci
Breaking: drop support for EOL Node - minimum supported now v14
2 parents e7fab5e + 221d84b commit 71165a4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v2
2424
- uses: mansona/npm-lockfile-version@v1
25-
- uses: actions/setup-node@v2
25+
- uses: actions/setup-node@v3
2626
with:
27-
node-version: 12.x
27+
node-version: 14.x
2828
cache: npm
29-
- run: npm i -g npm@7
29+
- run: npm i -g npm@8
3030
- run: npm ci
3131
- run: npm run lint
3232
- run: npx percy exec -- npm run test
@@ -37,11 +37,11 @@ jobs:
3737

3838
steps:
3939
- uses: actions/checkout@v2
40-
- uses: actions/setup-node@v2
40+
- uses: actions/setup-node@v3
4141
with:
42-
node-version: 12.x
42+
node-version: 14.x
4343
cache: npm
44-
- run: npm i -g npm@7
44+
- run: npm i -g npm@8
4545
- run: npm install --no-shrinkwrap
4646
- run: npm run test:ember
4747

@@ -70,11 +70,11 @@ jobs:
7070

7171
steps:
7272
- uses: actions/checkout@v2
73-
- uses: actions/setup-node@v2
73+
- uses: actions/setup-node@v3
7474
with:
75-
node-version: 12.x
75+
node-version: 14.x
7676
cache: npm
77-
- run: npm i -g npm@7
77+
- run: npm i -g npm@8
7878
- run: npm ci
7979
- name: Run Tests
8080
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Compatibility
1313

1414
* Ember.js v3.24 or above
1515
* Ember CLI v3.24 or above
16-
* Node.js v12 or above
16+
* Node.js v14 or above
1717

1818

1919
Installation

0 commit comments

Comments
 (0)