From 637a9dc4a40b2ff319b44a29c46a2f1d4a558165 Mon Sep 17 00:00:00 2001 From: Ben Demboski Date: Mon, 25 Jan 2021 09:43:58 -0800 Subject: [PATCH] Increase yarn timeout in CI We're getting intermittent timeouts installing dependencies on MacOS, and various issues such as https://github.com/yarnpkg/yarn/issues/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. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7bce4287..daed61d3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: | @@ -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 @@ -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