Skip to content

Commit

Permalink
fix issues with ember-try and npm peer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Jun 17, 2022
1 parent 58583fb commit 6e11f75
Show file tree
Hide file tree
Showing 4 changed files with 845 additions and 2,315 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm i -g npm@7
- run: npm i -g npm@8
- run: npm ci
- run: npm run lint

Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm i -g npm@7
- run: npm i -g npm@8
- run: npm ci
- run: npm run test:ember

Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm i -g npm@7
- run: npm i -g npm@8
- run: npm install --no-package-lock
- run: npm run test:ember

Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm i -g npm@7
- run: npm i -g npm@8
- run: npm ci

- name: test
Expand Down
9 changes: 9 additions & 0 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ module.exports = async function () {
devDependencies: {
'ember-source': await getChannelURL('release'),
},
overrides: {
'ember-source': '$ember-source',
},
},
},
{
Expand All @@ -68,6 +71,9 @@ module.exports = async function () {
devDependencies: {
'ember-source': await getChannelURL('beta'),
},
overrides: {
'ember-source': '$ember-source',
},
},
},
{
Expand All @@ -76,6 +82,9 @@ module.exports = async function () {
devDependencies: {
'ember-source': await getChannelURL('canary'),
},
overrides: {
'ember-source': '$ember-source',
},
},
},
{
Expand Down
Loading

0 comments on commit 6e11f75

Please sign in to comment.