Skip to content

Commit 5f20ce9

Browse files
committed
Increase yarn's network timeout
1 parent 7d4c5a2 commit 5f20ce9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
4646
env:
4747
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
48-
run: yarn --frozen-lockfile
48+
run: yarn --frozen-lockfile --network-timeout 180000
4949

5050
- name: Run Hygiene Checks
5151
run: yarn gulp hygiene
@@ -87,7 +87,7 @@ jobs:
8787
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
8888
env:
8989
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
90-
run: yarn --frozen-lockfile
90+
run: yarn --frozen-lockfile --network-timeout 180000
9191

9292
- name: Cache compiled core code
9393
id: cacheCompiledCoreCode
@@ -140,7 +140,7 @@ jobs:
140140
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
141141
env:
142142
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
143-
run: yarn --frozen-lockfile
143+
run: yarn --frozen-lockfile --network-timeout 180000
144144

145145
- name: Cache compiled extensions code
146146
id: cacheCompiledExtensionsCode
@@ -305,7 +305,7 @@ jobs:
305305
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
306306
env:
307307
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
308-
run: yarn --frozen-lockfile
308+
run: yarn --frozen-lockfile --network-timeout 180000
309309

310310
build-darwin-unit-tests:
311311
name: "Build: macOS Unit Tests"
@@ -497,7 +497,7 @@ jobs:
497497
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
498498
env:
499499
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
500-
run: yarn --frozen-lockfile
500+
run: yarn --frozen-lockfile --network-timeout 180000
501501

502502
- name: Compile and Download
503503
run: yarn concurrently --max_old_space_size=4095 --names "compile,electron,playwright,builtin-extensions" "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js compile" "yarn electron x64" "node ./node_modules/playwright/install.js" "yarn download-builtin-extensions"
@@ -563,7 +563,7 @@ jobs:
563563
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
564564
env:
565565
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
566-
run: yarn --frozen-lockfile
566+
run: yarn --frozen-lockfile --network-timeout 180000
567567

568568
- name: Compile and Download
569569
run: yarn concurrently --max_old_space_size=4095 --names "compile,electron,playwright,builtin-extensions" "node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js compile" "yarn electron x64" "node ./node_modules/playwright/install.js" "yarn download-builtin-extensions"
@@ -611,7 +611,7 @@ jobs:
611611
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
612612
env:
613613
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
614-
run: yarn --frozen-lockfile
614+
run: yarn --frozen-lockfile --network-timeout 180000
615615

616616
- name: Compile and Download
617617
run: yarn concurrently --max_old_space_size=4095 --names "compile,electron,playwright,builtin-extensions" "yarn compile" "yarn electron x64" "node ./node_modules/playwright/install.js" "yarn download-builtin-extensions"
@@ -648,7 +648,7 @@ jobs:
648648
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
649649
env:
650650
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
651-
run: yarn --frozen-lockfile
651+
run: yarn --frozen-lockfile --network-timeout 180000
652652

653653
- name: Run Monaco Editor Checks
654654
run: yarn monaco-compile-check

0 commit comments

Comments
 (0)