Skip to content

Commit

Permalink
ci: set the timeout to 10 minutes, as the default of 6 hours is too l…
Browse files Browse the repository at this point in the history
…ong.
  • Loading branch information
tksst committed Mar 5, 2024
1 parent 9423a41 commit 59a820e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
permissions:
actions: write
contents: read
timeout-minutes: 10
outputs:
skippable: ${{ steps.check.outputs.should_skip }}
steps:
Expand All @@ -25,6 +26,7 @@ jobs:
name: Test
needs: check-skippable
if: needs.check-skippable.outputs.skippable != 'true'
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -81,6 +83,7 @@ jobs:
name: Build and Lint
needs: check-skippable
if: needs.check-skippable.outputs.skippable != 'true'
timeout-minutes: 10

# Using matrix strategy, OS and Node version will be displayed in a title of a job.
strategy:
Expand Down Expand Up @@ -135,5 +138,6 @@ jobs:
# Do not fail the workflow even if this job fails
continue-on-error: true
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: Kesin11/actions-timeline@6905b677e042d41193107842cc5c7b715bef0042 # v2.0.3

0 comments on commit 59a820e

Please sign in to comment.