Skip to content

Commit

Permalink
fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Mar 7, 2024
1 parent e81a31f commit bd0d68b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ jobs:
- ember-lts-5.4
- ember-release
- embroider-safe
- embroider-optimized
- no-deprecations

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -101,6 +99,12 @@ jobs:
- ember-beta
- ember-release-no-deprecations

# this needs a fix in ember-cli-fastboot before it will ever pass
- embroider-optimized

# our current deprecations are coming from guidemaker so they need to be fixed there
- no-deprecations


steps:
- uses: actions/checkout@v4
Expand All @@ -116,3 +120,8 @@ jobs:
- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup
working-directory: test-app
- uses: mainmatter/continue-on-error-comment@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
outcome: ${{ steps.tests.outcome }}
test-id: ${{ matrix.try-scenario }}
17 changes: 17 additions & 0 deletions test-app/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,23 @@ module.exports = async function () {
},
},
},
{
name: 'no-deprecations',
npm: {
devDependencies: {
'ember-deprecation-error': '*',
},
},
},
{
name: 'ember-release-no-deprecations',
npm: {
devDependencies: {
'ember-source': await getChannelURL('release'),
'ember-deprecation-error': '*',
},
},
},
embroiderSafe(),
embroiderOptimized(),
],
Expand Down

0 comments on commit bd0d68b

Please sign in to comment.