Skip to content

Commit

Permalink
chore(ci): fix CI pipelines for v2 backports channel
Browse files Browse the repository at this point in the history
  • Loading branch information
anehx committed May 31, 2023
1 parent 559144f commit 9ea2f49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
with:
node-version: 10.x
- uses: volta-cli/action@v4
- run: yarn install --frozen-lockfile --ignore-engines
- run: yarn lint
- run: yarn test
Expand All @@ -31,9 +29,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
with:
node-version: 12.x
- uses: volta-cli/action@v4
- run: yarn install --no-lockfile
- run: yarn test

Expand Down Expand Up @@ -64,17 +60,15 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
with:
node-version: 12.x
- uses: volta-cli/action@v4
- name: install dependencies
run: yarn install --frozen-lockfile
- name: test
run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup

types:
runs-on: ubuntu-latest

needs: test

strategy:
Expand All @@ -86,9 +80,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: volta-cli/action@v1
with:
node-version: 12.x
- uses: volta-cli/action@v4
- name: install dependencies
run: yarn install --frozen-lockfile
- name: install TS version
Expand Down
3 changes: 3 additions & 0 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ module.exports = async function () {
npm: {
devDependencies: {
'ember-source': await getChannelURL('release'),
'@ember/string': '3.1.1',
},
},
},
Expand All @@ -108,6 +109,7 @@ module.exports = async function () {
npm: {
devDependencies: {
'ember-source': await getChannelURL('beta'),
'@ember/string': '3.1.1',
},
},
},
Expand All @@ -116,6 +118,7 @@ module.exports = async function () {
npm: {
devDependencies: {
'ember-source': await getChannelURL('canary'),
'@ember/string': '3.1.1',
},
},
},
Expand Down

0 comments on commit 9ea2f49

Please sign in to comment.