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 Dec 12, 2023
1 parent c2858fd commit 1ee0b14
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 @@ -75,6 +75,8 @@ jobs:
- ember-classic
- embroider-safe
- embroider-optimized
- no-deprecations
- ember-release-no-deprecations

steps:
- uses: actions/checkout@v4
Expand Down
17 changes: 17 additions & 0 deletions tests/dummy/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,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 1ee0b14

Please sign in to comment.