Skip to content
Snippets Groups Projects
Unverified Commit a45e7fb7 authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

ci: retry yarn install 3 times (#21916)

parent fa36011e
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,11 @@ jobs: ...@@ -77,7 +77,11 @@ jobs:
echo "Yarn $(yarn --version)" echo "Yarn $(yarn --version)"
- name: Installing dependencies - name: Installing dependencies
run: yarn install --frozen-lockfile uses: nick-fields/retry@v2.8.3
with:
timeout_minutes: 10
max_attempts: 3
command: yarn install --frozen-lockfile
# build before tests to for static file check # build before tests to for static file check
- name: Build - name: Build
......
...@@ -58,7 +58,11 @@ jobs: ...@@ -58,7 +58,11 @@ jobs:
yarn config set version-git-tag false yarn config set version-git-tag false
- name: Installing dependencies - name: Installing dependencies
run: yarn install --frozen-lockfile uses: nick-fields/retry@v2.8.3
with:
timeout_minutes: 10
max_attempts: 3
command: yarn install --frozen-lockfile
- name: Build ${{ env.NPM_VERSION }} - name: Build ${{ env.NPM_VERSION }}
run: yarn build run: yarn build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment