Skip to content

Commit a6eeceb

Browse files
authored
Merge pull request #21141 from emberjs/kg-run-smoke-tests-with-deps
2 parents 07617eb + 5d5f627 commit a6eeceb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci-jobs.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,30 @@ jobs:
169169
${MATRIX_COMMAND}
170170
env:
171171
MATRIX_COMMAND: ${{ matrix.command }}
172+
173+
smoke-test-with-deprecations-removed:
174+
name: Smoke tests with Deprecations Removed (Full Ember Apps)
175+
runs-on: ubuntu-latest
176+
needs: [basic-test, lint, types]
177+
strategy:
178+
fail-fast: false
179+
matrix: ${{fromJson(needs.lint.outputs.matrix)}}
180+
steps:
181+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
182+
with:
183+
persist-credentials: false
184+
- uses: ./.github/actions/setup
185+
with:
186+
use_lockfile: "false"
187+
- name: build
188+
run: pnpm build
189+
- name: test
190+
env:
191+
OVERRIDE_DEPRECATION_VERSION: "15.0.0"
192+
MATRIX_COMMAND: ${{ matrix.command }}
193+
working-directory: smoke-tests/scenarios
194+
run: |
195+
${MATRIX_COMMAND}
172196
173197
node-test:
174198
name: Node.js Tests

0 commit comments

Comments
 (0)