From 0698a964448f10866a3e14e5d0020dfc80b89fc0 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Mon, 19 Dec 2022 03:48:48 +0530 Subject: Update retry action in builds --- .github/workflows/builds.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.github') 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: - name: Install pnpm run: npm i -gf "pnpm@$(node -p 'require("./package.json").engines.pnpm')" && pnpm -v - name: Install node dependencies recursively - run: pnpm i + uses: nick-fields/retry@v2.8.2 + with: + command: pnpm i + timeout_minutes: 15 + max_attempts: 3 + retry_on: error - name: Check code style and formatting if: ${{ github.event_name == 'pull_request' }} run: pnpm lint:fix && pnpm reformat-files -- cgit v1.2.3-54-g00ecf