Skip to content

Commit

Permalink
Add timeouts to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
simonihmig committed Feb 13, 2025
1 parent d971d04 commit cabd6f0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
prebuild:
name: 'Prebuild shared packages'
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
Expand All @@ -40,6 +41,7 @@ jobs:
name: 'Lint'
runs-on: ubuntu-latest
needs: 'prebuild'
timeout-minutes: 5

steps:
- uses: actions/checkout@v4
Expand All @@ -61,6 +63,7 @@ jobs:
name: 'Tests'
runs-on: ubuntu-latest
needs: 'prebuild'
timeout-minutes: 10

steps:
- uses: actions/checkout@v4
Expand All @@ -82,6 +85,7 @@ jobs:
name: 'Floating Dependencies'
runs-on: ubuntu-latest
needs: 'test'
timeout-minutes: 10

steps:
- uses: actions/checkout@v4
Expand All @@ -103,6 +107,7 @@ jobs:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: 'test'
timeout-minutes: 10

strategy:
fail-fast: false
Expand Down

0 comments on commit cabd6f0

Please sign in to comment.