Skip to content

Commit a2f2721

Browse files
committed
fix network issues
1 parent 4781151 commit a2f2721

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313
- uses: volta-cli/action@v1
14-
- run: yarn install --frozen-lockfile
14+
- run: yarn install --frozen-lockfile --network-concurrency=1
1515
- run: yarn lint
1616
- run: yarn test:ember
1717

@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v2
2424
- uses: volta-cli/action@v1
25-
- run: yarn install --no-lockfile
25+
- run: yarn install --no-lockfile --network-concurrency=1
2626
- run: yarn test:ember
2727

2828
try-scenarios:
@@ -36,13 +36,11 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
ember-try-scenario:
39-
- ember-default
4039
- ember-default-with-jquery
4140
- ember-classic
4241
- ember-lts-3.24
4342
- ember-lts-3.20
4443
- ember-lts-3.16
45-
- ember-lts-3.12
4644
# temporarily disabled until we've fixed support for Ember.js v4
4745
# - ember-release
4846
# - ember-beta
@@ -56,6 +54,6 @@ jobs:
5654
with:
5755
node-version: 12.x
5856
- name: install dependencies
59-
run: yarn install --frozen-lockfile
57+
run: yarn install --frozen-lockfile --network-concurrency=1
6058
- name: test
6159
run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup

0 commit comments

Comments
 (0)