Skip to content

Commit

Permalink
Drop support for Node 10 and 12
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeAstapov committed Nov 13, 2022
1 parent 60372ad commit 6892a51
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
name: 'Linting'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/checkout@v3
- uses: volta-cli/action@v4
- run: yarn install --frozen-lockfile --non-interactive
- run: yarn lint

Expand All @@ -30,11 +30,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['12', '14', '16']
node-version: ['14', '16', '18']

steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/checkout@v3
- uses: volta-cli/action@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile --non-interactive
Expand All @@ -50,8 +50,8 @@ jobs:
os: [macOS, windows]

steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/checkout@v3
- uses: volta-cli/action@v4
- run: yarn install --frozen-lockfile --non-interactive
- run: yarn ember test

Expand All @@ -65,8 +65,8 @@ jobs:
['lts-3.16', 'lts-3.20', 'lts-3.24', 'release', 'beta', 'canary']

steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/checkout@v3
- uses: volta-cli/action@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile --non-interactive
Expand All @@ -82,7 +82,7 @@ jobs:
ts-version: ['4.1', '4.2', '4.3', 'next']

steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/checkout@v3
- uses: volta-cli/action@v4
- run: yarn install --frozen-lockfile --non-interactive
- run: './node_modules/.bin/ember try:one ts-${{ matrix.ts-version }}'
4 changes: 2 additions & 2 deletions .github/workflows/Nightly TypeScript Run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
name: typescript@next
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
- uses: actions/checkout@v3
- uses: volta-cli/action@v4
- run: yarn install --frozen-lockfile --non-interactive
- run: './node_modules/.bin/ember try:one ts-next'

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Compatibility

* Ember.js v3.16 or above
* Ember CLI v2.13 or above
* Node.js v10 or above
* Node.js v14 or above

### TypeScript

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"typescript": "^4.3.2"
},
"engines": {
"node": "12.* || >= 14"
"node": "14.* || 16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand All @@ -104,7 +104,7 @@
}
},
"volta": {
"node": "14.17.0",
"yarn": "1.22.10"
"node": "14.21.1",
"yarn": "1.22.19"
}
}

0 comments on commit 6892a51

Please sign in to comment.