Skip to content

Commit

Permalink
Increase yarn timeout in CI (#706)
Browse files Browse the repository at this point in the history
We're getting intermittent timeouts installing dependencies on MacOS, and various issues such as yarnpkg/yarn#6115 indicate that it's likely some kind of network and/or disk I/O (maybe virus/anti-malware) issue, so let's bump up the install timeout.
  • Loading branch information
Ben Demboski committed Jan 25, 2021
1 parent a963a13 commit 9806828
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: volta-cli/action@v1
with:
node-version: 10.x
- run: yarn install --frozen-lockfile
- run: yarn install --frozen-lockfile --network-timeout 100000

- name: 'Lint'
run: |
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: volta-cli/action@v1
with:
node-version: 10.x
- run: yarn install --frozen-lockfile
- run: yarn install --frozen-lockfile --network-timeout 100000

- name: 'Basic Tests'
run: yarn test-fast
Expand All @@ -56,7 +56,7 @@ jobs:
- uses: volta-cli/action@v1
with:
node-version: 10.x
- run: yarn install --frozen-lockfile
- run: yarn install --frozen-lockfile --network-timeout 100000

- name: 'End-to-end Tests (${{ matrix.package-manager }})'
uses: GabrielBB/xvfb-action@v1
Expand Down

0 comments on commit 9806828

Please sign in to comment.