Skip to content

Commit

Permalink
add no-deprecations ember-try scenarios
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Sep 14, 2021
1 parent 10000a7 commit 888293e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ jobs:
- ember-classic
- embroider-safe
- embroider-optimized
- no-deprecations
- ember-release-no-deprecations

steps:
- uses: actions/checkout@v2
Expand Down
17 changes: 17 additions & 0 deletions packages/ember-cli-fastboot/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,23 @@ module.exports = async function () {
},
embroiderSafe(),
embroiderOptimized(),
{
name: 'no-deprecations',
npm: {
devDependencies: {
'ember-deprecation-error': '*',
},
},
},
{
name: 'ember-release-no-deprecations',
npm: {
devDependencies: {
'ember-source': await getChannelURL('release'),
'ember-deprecation-error': '*',
},
},
},
],
};
};

0 comments on commit 888293e

Please sign in to comment.