From 6f178cc1c60d7cb868d9cdb968fa8880b3e8f518 Mon Sep 17 00:00:00 2001 From: Guilherme Caponetto <638737+caponetto@users.noreply.github.com> Date: Sat, 29 Jul 2023 14:13:59 -0300 Subject: [PATCH] Config network-timeout for yarn (#92) --- .github/actions/setup-env/action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index e208a82..816221a 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -27,6 +27,14 @@ runs: cache: "yarn" cache-dependency-path: ${{ inputs.path }}/yarn.lock + - name: "Setup Yarn" + shell: bash + run: | + echo "STEP: Setup Yarn" + cd ${{ inputs.path }} + npm install -g yarn@1.22.19 + yarn config set network-timeout 1000000 + - name: "Bootstrap" shell: bash run: |