Skip to content

Commit

Permalink
chore(lint): allow enough total time for retries to work (#4181)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy authored Aug 31, 2020
1 parent cb7a647 commit 56bb657
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
linting:
name: ESLint
timeout-minutes: 5
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: styfle/[email protected]
Expand All @@ -37,8 +37,8 @@ jobs:
- name: Yarn Install
uses: nick-invision/retry@v1
with:
timeout_minutes: 10
retry_wait_seconds: 60
timeout_minutes: 3
retry_wait_seconds: 30
max_attempts: 3
command: yarn --no-audit --prefer-offline
- name: Lint
Expand All @@ -62,7 +62,7 @@ jobs:
typescript:
name: TypeScript Build Validation
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 15
steps:
- uses: styfle/[email protected]
with:
Expand All @@ -87,8 +87,8 @@ jobs:
- name: Yarn Install
uses: nick-invision/retry@v1
with:
timeout_minutes: 10
retry_wait_seconds: 60
timeout_minutes: 3
retry_wait_seconds: 30
max_attempts: 3
command: yarn --no-audit --prefer-offline
- name: Lint
Expand Down

1 comment on commit 56bb657

@vercel
Copy link

@vercel vercel bot commented on 56bb657 Aug 31, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.