Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
# Without an explicit cap, a hung step (e.g. apt-get stalling against a
# flaky mirror -- observed hanging the whole job against GitHub's
# default 360-minute job timeout) blocks the PR for hours instead of
# failing fast; every job below gets the same treatment.
timeout-minutes: 15
steps:
- uses: actions/checkout@v7

Expand All @@ -50,6 +55,7 @@ jobs:
test-unit:
name: Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7

Expand Down Expand Up @@ -97,6 +103,7 @@ jobs:
test-unit-root:
name: Unit Tests (root)
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7

Expand Down Expand Up @@ -153,6 +160,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7

Expand Down Expand Up @@ -185,6 +193,7 @@ jobs:
name: E2E Tests
runs-on: ubuntu-latest
needs: [lint, test-unit, test-unit-root, build]
timeout-minutes: 25
steps:
- uses: actions/checkout@v7

Expand Down