diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5d08993..6329c1d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,6 +72,7 @@ jobs: - ember-canary - embroider-safe - embroider-optimized + - no-deprecations steps: - uses: actions/checkout@v4 diff --git a/tests/dummy/config/ember-try.js b/tests/dummy/config/ember-try.js index dcfc1b76..74ba6262 100644 --- a/tests/dummy/config/ember-try.js +++ b/tests/dummy/config/ember-try.js @@ -75,6 +75,14 @@ module.exports = async function () { }, embroiderSafe(), embroiderOptimized(), + { + name: 'no-deprecations', + npm: { + devDependencies: { + 'ember-deprecation-error': '*', + }, + }, + }, ], }; };