aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-12-19 03:48:48 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-12-19 03:48:48 +0530
commit0698a964448f10866a3e14e5d0020dfc80b89fc0 (patch)
tree0a4d466616a8927bf3805090c84477d31357c26d /.github
parentUpgrade npm modules (diff)
downloadferdium-recipes-0698a964448f10866a3e14e5d0020dfc80b89fc0.tar.gz
ferdium-recipes-0698a964448f10866a3e14e5d0020dfc80b89fc0.tar.zst
ferdium-recipes-0698a964448f10866a3e14e5d0020dfc80b89fc0.zip
Update retry action in builds
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 0fd768e..e87fc8f 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -35,7 +35,12 @@ jobs:
35 - name: Install pnpm 35 - name: Install pnpm
36 run: npm i -gf "pnpm@$(node -p 'require("./package.json").engines.pnpm')" && pnpm -v 36 run: npm i -gf "pnpm@$(node -p 'require("./package.json").engines.pnpm')" && pnpm -v
37 - name: Install node dependencies recursively 37 - name: Install node dependencies recursively
38 run: pnpm i 38 uses: nick-fields/retry@v2.8.2
39 with:
40 command: pnpm i
41 timeout_minutes: 15
42 max_attempts: 3
43 retry_on: error
39 - name: Check code style and formatting 44 - name: Check code style and formatting
40 if: ${{ github.event_name == 'pull_request' }} 45 if: ${{ github.event_name == 'pull_request' }}
41 run: pnpm lint:fix && pnpm reformat-files 46 run: pnpm lint:fix && pnpm reformat-files