increase timeout for yarn install during builds

pull/1381/head
Audric Ackermann 4 years ago
parent 4a58b2c9f6
commit 588ddf684c
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -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

@ -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

@ -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

Loading…
Cancel
Save