Skip to content

Commit 9500d0b

Browse files
committed
chore(ci): fix CI pipelines for v2 backports channel
1 parent 559144f commit 9500d0b

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

.github/workflows/ci-build.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v2
20-
- uses: volta-cli/action@v1
21-
with:
22-
node-version: 10.x
20+
- uses: volta-cli/action@v4
2321
- run: yarn install --frozen-lockfile --ignore-engines
2422
- run: yarn lint
2523
- run: yarn test
@@ -31,9 +29,7 @@ jobs:
3129

3230
steps:
3331
- uses: actions/checkout@v2
34-
- uses: volta-cli/action@v1
35-
with:
36-
node-version: 12.x
32+
- uses: volta-cli/action@v4
3733
- run: yarn install --no-lockfile
3834
- run: yarn test
3935

@@ -64,17 +60,15 @@ jobs:
6460

6561
steps:
6662
- uses: actions/checkout@v2
67-
- uses: volta-cli/action@v1
68-
with:
69-
node-version: 12.x
63+
- uses: volta-cli/action@v4
7064
- name: install dependencies
7165
run: yarn install --frozen-lockfile
7266
- name: test
7367
run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup
7468

7569
types:
7670
runs-on: ubuntu-latest
77-
71+
7872
needs: test
7973

8074
strategy:
@@ -86,9 +80,7 @@ jobs:
8680

8781
steps:
8882
- uses: actions/checkout@v2
89-
- uses: volta-cli/action@v1
90-
with:
91-
node-version: 12.x
83+
- uses: volta-cli/action@v4
9284
- name: install dependencies
9385
run: yarn install --frozen-lockfile
9486
- name: install TS version

config/ember-try.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ module.exports = async function () {
100100
npm: {
101101
devDependencies: {
102102
'ember-source': await getChannelURL('release'),
103+
'@ember/string': '3.1.1',
103104
},
104105
},
105106
},
@@ -108,6 +109,7 @@ module.exports = async function () {
108109
npm: {
109110
devDependencies: {
110111
'ember-source': await getChannelURL('beta'),
112+
'@ember/string': '3.1.1',
111113
},
112114
},
113115
},
@@ -116,6 +118,7 @@ module.exports = async function () {
116118
npm: {
117119
devDependencies: {
118120
'ember-source': await getChannelURL('canary'),
121+
'@ember/string': '3.1.1',
119122
},
120123
},
121124
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
}
156156
},
157157
"volta": {
158-
"node": "12.22.4",
158+
"node": "14.21.3",
159159
"yarn": "1.22.4"
160160
},
161161
"typesVersions": {

0 commit comments

Comments
 (0)