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
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,17 @@ on:
- release
- master

# A new push makes an older run for the same PR obsolete. Cancel it before it
# can consume one of the organization's limited hosted-runner slots.
concurrency:
group: ci-pr-${{ github.event.pull_request.number }}
cancel-in-progress: true

jobs:
# ── Frontend ────────────────────────────────────────────────────────────────
frontend:
name: Frontend (typecheck · lint · test)
runs-on: macos-latest
runs-on: ubuntu-latest

steps:
- name: Checkout
Expand All @@ -39,7 +45,7 @@ jobs:
uses: actions/cache@v5
with:
path: node_modules
key: node-modules-${{ hashFiles('pnpm-lock.yaml') }}
key: node-modules-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down
Loading