Skip to content

fix(server): subscriptions survive hibernation wake (ADR-0019) #74

fix(server): subscriptions survive hibernation wake (ADR-0019)

fix(server): subscriptions survive hibernation wake (ADR-0019) #74

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# 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
permissions:
contents: read
jobs:
build:
name: typecheck · test · build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
# Tests run inside workerd via @cloudflare/vitest-pool-workers; the pool
# provisions miniflare/workerd itself, so no Cloudflare account or
# secrets are required here.
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Build
run: npm run build