We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28568ae commit f5263feCopy full SHA for f5263fe
.github/workflows/ci.yml
@@ -4,10 +4,10 @@ on:
4
branches:
5
- main
6
paths-ignore:
7
- - 'README.md'
+ - "README.md"
8
pull_request:
9
10
11
jobs:
12
test:
13
runs-on: ubuntu-22.04
@@ -18,8 +18,17 @@ jobs:
18
uses: actions/setup-node@v4
19
with:
20
node-version: 20
21
+ cache: yarn
22
- name: Install dependencies
- run: yarn cache clean && yarn install --frozen-lockfile
23
+ run: |
24
+ n=0
25
+ until [ $n -ge 3 ]
26
+ do
27
+ yarn install && echo "done" && break
28
+ n=$((n+1))
29
+ echo "Retry $n/3..."
30
+ sleep 15
31
+ done
32
- name: Build
33
run: yarn build
34
- name: Lint
0 commit comments