Skip to content

Commit

Permalink
fix: drop Ember < 3.28 and Node 14
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop Ember < 3.28 and Node 14
  • Loading branch information
knownasilya committed Aug 2, 2023
1 parent a44117f commit 6e0751b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 24 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
Expand All @@ -31,10 +31,10 @@ jobs:
browser: [chrome, firefox]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Test
Expand All @@ -51,10 +51,10 @@ jobs:
browser: [chrome, firefox]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Install Dependencies
run: yarn install --no-lockfile --non-interactive
- name: Test
Expand All @@ -70,7 +70,6 @@ jobs:
fail-fast: true
matrix:
ember-try-scenario:
- ember-lts-3.24
- ember-lts-3.28
- ember-release
- ember-beta
Expand All @@ -86,10 +85,10 @@ jobs:
allow-failure: true

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Test
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Here's the official [demo] using this component.

## Compatibility

- Ember.js v3.24 or above
- Ember CLI v3.24 or above
- Node.js v12 or above
- Ember.js v3.28 or above
- Ember CLI v3.28 or above
- Node.js v16 or above

## Install

Expand Down
8 changes: 0 additions & 8 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@ module.exports = async function () {
return {
useYarn: true,
scenarios: [
{
name: 'ember-lts-3.24',
npm: {
devDependencies: {
'ember-source': '~3.24.3',
},
},
},
{
name: 'ember-lts-3.28',
npm: {
Expand Down

0 comments on commit 6e0751b

Please sign in to comment.