Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Drop support for Node 13.
Browse files Browse the repository at this point in the history
It is no longer supported by Node itself.
  • Loading branch information
rwjblue committed Jul 21, 2020
1 parent 5b85519 commit 9767461
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 13.x, 14.x]
node-version: [10.x, 12.x, 14.x]
os: [ubuntu, windows]

steps:
Expand Down
6 changes: 2 additions & 4 deletions docs/node-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
| 5.x | 1.13.9 - 2.6.3 |
| 6.x | 2.9.0 - 3.9.x |
| 7.x | 2.10.0 - 2.16.x |
| 8.x | 2.13.3 - 3.16.x |
| 8.x | 2.13.3 - 3.16.x |
| 9.x | 2.16.2 - 3.2.x |
| 10.x | 3.1.3 - Current |
| 11.x | 3.9.0 - 3.13.0 |
| 12.x | 3.10.0 - Current |
| 13.x | 3.15.0 - Current |
| 13.x | 3.15.0 - 3.20.0 |
| 14.x | 3.19.0 - Current |


Expand All @@ -34,8 +34,6 @@ Node.js](https://github.com/nodejs/LTS#lts_schedule).
* Supported by ember-cli/ember-cli#master until: 2021-04-30.
* v12: Released as stable version then converted to LTS.
* Supported by ember-cli/ember-cli#master until: 2022-04-30.
* v13: Released as stable (not an LTS)
* Supported by ember-cli/ember-cli#master until: 2020-06-30.
* v14: Released as stable version then converted to LTS.
* Supported by ember-cli/ember-cli#master until: 2023-04-30.

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/utilities/platform-checker-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('platform-checker', function () {
check('v8.0.0', { isTested: false, isDeprecated: true, isValid: false });
check('v10.0.0', { isTested: true, isDeprecated: false, isValid: true });
check('v12.0.0', { isTested: true, isDeprecated: false, isValid: true });
check('v13.0.0', { isTested: true, isDeprecated: false, isValid: true });
check('v13.0.0', { isTested: false, isDeprecated: false, isValid: true });
check('v14.0.0', { isTested: true, isDeprecated: false, isValid: true });
check('v15.0.0', { isTested: false, isDeprecated: false, isValid: true });
});
Expand Down

0 comments on commit 9767461

Please sign in to comment.