Skip to content

Commit

Permalink
ci(workflows): update scenarios
Browse files Browse the repository at this point in the history
  • Loading branch information
velrest committed Jun 30, 2023
1 parent 34ad9db commit 1b5518a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 39 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,11 @@ jobs:
strategy:
matrix:
scenario:
- ember-lts-3.28
- ember-lts-4.8
- ember-lts-4.12
- ember-release

- embroider-safe
- embroider-optimized
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
43 changes: 6 additions & 37 deletions tests/dummy/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ module.exports = async function () {
useYarn: true,
scenarios: [
{
name: "ember-lts-3.28",
name: "ember-lts-4.8",
npm: {
devDependencies: {
"ember-source": "~3.28.6",
"ember-source": "~4.8.0",
},
},
},
{
name: "ember-lts-4.4",
name: "ember-lts-4.12",
npm: {
devDependencies: {
"ember-source": "~4.4.0",
"ember-source": "~4.12.0",
},
},
},
Expand All @@ -29,39 +29,8 @@ module.exports = async function () {
devDependencies: {
"ember-source": await getChannelURL("release"),
},
},
},
{
name: "ember-beta",
npm: {
devDependencies: {
"ember-source": await getChannelURL("beta"),
},
},
},
{
name: "ember-canary",
npm: {
devDependencies: {
"ember-source": await getChannelURL("canary"),
},
},
},
{
name: "ember-classic",
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({
"application-template-wrapper": true,
"default-async-observers": false,
"template-only-glimmer-components": false,
}),
},
npm: {
devDependencies: {
"ember-source": "~3.28.0",
},
ember: {
edition: "classic",
dependencies: {
"ember-data": "latest",
},
},
},
Expand Down

0 comments on commit 1b5518a

Please sign in to comment.