Skip to content

Commit

Permalink
ci: ensure clean all script does not error after retrying step, by in…
Browse files Browse the repository at this point in the history
…stalling globby and chalk globally (#9745)
  • Loading branch information
AlessioGr authored Dec 4, 2024
1 parent f12b4dc commit 84a5b40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ jobs:
max_attempts: 5
timeout_minutes: 15
command: pnpm test:int
on_retry_command: pnpm clean:all && pnpm install
on_retry_command: pnpm clean:build && pnpm install --no-frozen-lockfile

tests-e2e:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -386,7 +386,7 @@ jobs:
max_attempts: 5
timeout_minutes: 20
command: PLAYWRIGHT_JSON_OUTPUT_NAME=results_${{ matrix.suite }}.json pnpm test:e2e:prod:ci ${{ matrix.suite }}
on_retry_command: pnpm clean:all && pnpm install && pnpm build:all
on_retry_command: pnpm clean:build && pnpm install --no-frozen-lockfile && pnpm build:all
env:
PLAYWRIGHT_JSON_OUTPUT_NAME: results_${{ matrix.suite }}.json
NEXT_TELEMETRY_DISABLED: 1
Expand Down

0 comments on commit 84a5b40

Please sign in to comment.