Skip to content

Commit

Permalink
Drop support to node 10 and configure github CI for node 12, 14 and 16
Browse files Browse the repository at this point in the history
  • Loading branch information
davideferre committed Nov 1, 2021
1 parent 3d37904 commit 6dd2007
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
29 changes: 22 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,21 @@ on:
- master
pull_request:

env:
NODE_VERSION: '10.x'

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
node:
- "12"
- "14"
- "16"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '${{ env.NODE_VERSION }}'
node-version: '${{ matrix.node }}'

- name: Get package manager's global cache path
id: global-cache-dir-path
Expand Down Expand Up @@ -84,12 +87,16 @@ jobs:
matrix:
os: [ubuntu-latest]
browser: [chrome]
node:
- "12"
- "14"
- "16"

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '${{ env.NODE_VERSION }}'
node-version: '${{ matrix.node }}'

- name: Get package manager's global cache path
id: global-cache-dir-path
Expand Down Expand Up @@ -126,12 +133,16 @@ jobs:
matrix:
os: [ubuntu-latest]
browser: [chrome]
node:
- "12"
- "14"
- "16"

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '${{ env.NODE_VERSION }}'
node-version: '${{ matrix.node }}'

- name: Get package manager's global cache path
id: global-cache-dir-path
Expand Down Expand Up @@ -173,12 +184,16 @@ jobs:
embroider-safe,
embroider-optimized
]
node:
- "12"
- "14"
- "16"

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '${{ env.NODE_VERSION }}'
node-version: '${{ matrix.node }}'

- name: Get package manager's global cache path
id: global-cache-dir-path
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Compatibility

* Ember.js v3.20 or above
* Ember CLI v3.20 or above
* Node.js v10 or above
* Node.js v12 or above


Installation
Expand Down

0 comments on commit 6dd2007

Please sign in to comment.