Skip to content

Commit

Permalink
Increase yarn's network timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima committed Dec 14, 2020
1 parent 7d4c5a2 commit 5f20ce9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --network-timeout 180000

- name: Run Hygiene Checks
run: yarn gulp hygiene
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --network-timeout 180000

- name: Cache compiled core code
id: cacheCompiledCoreCode
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --network-timeout 180000

- name: Cache compiled extensions code
id: cacheCompiledExtensionsCode
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --network-timeout 180000

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

- name: Compile and Download
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"
Expand Down Expand Up @@ -563,7 +563,7 @@ jobs:
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --network-timeout 180000

- name: Compile and Download
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"
Expand Down Expand Up @@ -611,7 +611,7 @@ jobs:
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --network-timeout 180000

- name: Compile and Download
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"
Expand Down Expand Up @@ -648,7 +648,7 @@ jobs:
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --network-timeout 180000

- name: Run Monaco Editor Checks
run: yarn monaco-compile-check
Expand Down

0 comments on commit 5f20ce9

Please sign in to comment.