We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e08b2a commit bf402c8Copy full SHA for bf402c8
.github/actions/install/action.yml
@@ -18,7 +18,8 @@ runs:
18
shell: bash
19
if: inputs.cache == 'true' && steps.yarn-cache.outputs.cache-hit == 'true'
20
# Retry in case of server error from registry.
21
- - run: yarn install --frozen-lockfile --ignore-engines || yarn install --frozen-lockfile --ignore-engines
+ # Wait 60 seconds to give the registry server time to heal.
22
+ - run: yarn install --frozen-lockfile --ignore-engines || sleep 60 && yarn install --frozen-lockfile --ignore-engines
23
24
- run: tar -cf node_modules.tar node_modules
25
0 commit comments