Skip to content

Commit

Permalink
ember-try: Add Ember.js 3.20, 3.24 and 3.28 scenarios
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Dec 13, 2021
1 parent 080bad4 commit 4e15b3d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
ember-try-scenario:
- ember-lts-2.18
- ember-lts-3.4
- ember-lts-3.20
- ember-lts-3.24
- ember-lts-3.28
# disabled due to incompatibility with Ember.js 4
# - ember-release
# - ember-beta
Expand All @@ -62,7 +65,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 6.x
# not running Node.js 6 because of incompatibilities in transitive dependencies
node-version: 12.x

- name: install dependencies
run: yarn install --frozen-lockfile
Expand Down
24 changes: 24 additions & 0 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,30 @@ module.exports = function() {
}
}
},
{
name: 'ember-lts-3.20',
npm: {
devDependencies: {
'ember-source': '~3.20.0'
}
}
},
{
name: 'ember-lts-3.24',
npm: {
devDependencies: {
'ember-source': '~3.24.0'
}
}
},
{
name: 'ember-lts-3.28',
npm: {
devDependencies: {
'ember-source': '~3.28.0'
}
}
},
{
name: 'ember-release',
npm: {
Expand Down

0 comments on commit 4e15b3d

Please sign in to comment.