From c400fd17a8d0f92b871b2571ad4b79cd53247eb1 Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Mon, 26 Feb 2024 15:53:12 +0000 Subject: [PATCH] add no-deprecations ember-try scenario --- .github/workflows/ci.yml | 1 + tests/dummy/config/ember-try.js | 8 ++++++++ 2 files changed, 9 insertions(+) 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': '*', + }, + }, + }, ], }; };