Skip to content

Warm platform binaries at deploy; document the R2-multipart build #11

Warm platform binaries at deploy; document the R2-multipart build

Warm platform binaries at deploy; document the R2-multipart build #11

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