Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ concurrency:
jobs:
lint-typecheck:
runs-on: ubuntu-latest
# Backstop so a wedged step can't pin the runner until GitHub's ~6h
# default. Generous vs. the ~1-2min this job actually takes.
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
# pnpm version is read from `packageManager` in root package.json.
Expand All @@ -37,6 +40,7 @@ jobs:

test-unit:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
# pnpm version is read from `packageManager` in root package.json.
Expand All @@ -55,6 +59,9 @@ jobs:

test-browser:
runs-on: ubuntu-latest
# Higher cap: a hung Playwright/chromium page is the most likely
# thing to wedge, and the chromium download adds cold-start time.
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
# pnpm version is read from `packageManager` in root package.json.
Expand All @@ -76,6 +83,7 @@ jobs:

build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
# pnpm version is read from `packageManager` in root package.json.
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ concurrency:
jobs:
release:
runs-on: ubuntu-latest
# Full suite + browser tests + rebuild + npm publish in one job.
# Backstop against a wedged test/publish holding the runner open.
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
Loading