From 588ddf684caae1af15cf1b555ce76a8dc3f49037 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 8 Dec 2020 10:27:50 +1100 Subject: [PATCH] increase timeout for yarn install during builds --- .github/workflows/build-binaries.yml | 2 +- .github/workflows/pull-request.yml | 3 ++- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index ac89c066f..77530ff14 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -44,7 +44,7 @@ jobs: run: npm install yarn --no-save - name: Install Dependencies - run: yarn install --frozen-lockfile + run: yarn install --frozen-lockfile --network-timeout 600000 - name: Generate and concat files run: yarn generate diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 53828fa02..6e88e1435 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -57,7 +57,8 @@ jobs: - name: Install Dependencies #skipped if step before set variable to true if: | steps.yarn-cache.outputs.cache-hit != 'true' - run: yarn install --frozen-lockfile --prefer-offline + run: yarn install --frozen-lockfile --network-timeout 600000 + - name: Generate and concat files run: yarn generate diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0bae812e5..69b325462 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: run: npm install yarn --no-save - name: Install Dependencies - run: yarn install --frozen-lockfile + run: yarn install --frozen-lockfile --network-timeout 600000 - name: Generate and concat files run: yarn generate