Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/complete-production-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ jobs:
cache: 'npm'

- name: Install backend dependencies (with retry)
uses: nick-fields/retry@v3
uses: nick-fields/retry@v4
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 30
command: npm ci

- name: Install webapp dependencies (with retry)
uses: nick-fields/retry@v3
uses: nick-fields/retry@v4
with:
timeout_minutes: 10
max_attempts: 3
Expand All @@ -111,7 +111,7 @@ jobs:
run: npm run type-check && npm run type-check:webapp

- name: Run tests (with retry)
uses: nick-fields/retry@v3
uses: nick-fields/retry@v4
with:
timeout_minutes: 15
max_attempts: 2
Expand Down
Loading