Skip to content

Commit

Permalink
Drop support for Node v14
Browse files Browse the repository at this point in the history
  • Loading branch information
kategengler committed Aug 16, 2023
1 parent 8463aac commit 47fd57a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: volta-cli/action@v1
- uses: volta-cli/action@v4
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint Addon
Expand All @@ -34,13 +34,13 @@ jobs:
matrix:
os: [ubuntu-latest]
browser: [chrome, firefox]
node: ['14', '16', '18']
node: ['16', '18']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: volta-cli/action@v1
- uses: volta-cli/action@v4
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
Expand All @@ -61,10 +61,10 @@ jobs:
browser: [chrome, firefox]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: volta-cli/action@v1
- uses: volta-cli/action@v4
- name: Install Dependencies
run: yarn install --no-lockfile --non-interactive
- name: Test
Expand Down Expand Up @@ -97,10 +97,10 @@ jobs:
allow-failure: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: volta-cli/action@v1
- uses: volta-cli/action@v4
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Test
Expand All @@ -115,12 +115,12 @@ jobs:
timeout-minutes: 20
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: volta-cli/action@v1
- uses: volta-cli/action@v4
with:
node-version: 14
node-version: 16.x
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion addon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"rollup": "^2.67.0"
},
"engines": {
"node": "14.* || 16.* || >= 18"
"node": "16.* || >= 18"
},
"ember-addon": {
"demoURL": "https://ember-cli.github.io/ember-page-title",
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"webpack": "^5.0.0"
},
"engines": {
"node": "14.* || 16.* || >= 18"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down
2 changes: 1 addition & 1 deletion test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"webpack": "^5.0.0"
},
"engines": {
"node": "14.* || 16.* || >= 18"
"node": "16.* || >= 18"
},
"ember": {
"edition": "octane"
Expand Down

0 comments on commit 47fd57a

Please sign in to comment.