Skip to content

Commit

Permalink
Merge pull request #46 from mansona/fix-ember-try
Browse files Browse the repository at this point in the history
Fix ember-try issues
  • Loading branch information
mansona authored Jun 28, 2022
2 parents 58583fb + 7b8045e commit 73c2592
Show file tree
Hide file tree
Showing 4 changed files with 686 additions and 1,232 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
10 changes: 10 additions & 0 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module.exports = async function () {
npm: {
devDependencies: {
'ember-source': '~3.4.0',
'@ember/test-helpers': '2.7.0',
},
},
},
Expand Down Expand Up @@ -60,6 +61,9 @@ module.exports = async function () {
devDependencies: {
'ember-source': await getChannelURL('release'),
},
overrides: {
'ember-source': '$ember-source',
},
},
},
{
Expand All @@ -68,6 +72,9 @@ module.exports = async function () {
devDependencies: {
'ember-source': await getChannelURL('beta'),
},
overrides: {
'ember-source': '$ember-source',
},
},
},
{
Expand All @@ -76,6 +83,9 @@ module.exports = async function () {
devDependencies: {
'ember-source': await getChannelURL('canary'),
},
overrides: {
'ember-source': '$ember-source',
},
},
},
{
Expand Down
Loading

0 comments on commit 73c2592

Please sign in to comment.