Skip to content

Wire commit registration into warm: 'pnpm warm <sha>' registers + pre… #13

Wire commit registration into warm: 'pnpm warm <sha>' registers + pre…

Wire commit registration into warm: 'pnpm warm <sha>' registers + pre… #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
# Cancel superseded runs on the same ref (e.g. rapid pushes to a PR).
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: typecheck + test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
# vitest runs the Worker in workerd (Miniflare); no network or secrets.
# The deploy-time checks (warm + bun e2e) need a live deployment and run
# from `pnpm run deploy`, not here.
- name: Test
run: pnpm test