File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments