Skip to content

docs: tighten README — fix residual zh, compress comparison, add Quic… #33

docs: tighten README — fix residual zh, compress comparison, add Quic…

docs: tighten README — fix residual zh, compress comparison, add Quic… #33

Workflow file for this run

name: CI
on:
push:
branches: [main, "claude/**"]
pull_request:
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: ['20', '22']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
# No `cache: 'npm'` — setup-node's cache action requires a
# committed package-lock.json to compute its key, which we
# don't ship yet. Re-enable once a lockfile lands.
# No package-lock.json committed yet, so use `npm install` rather
# than `npm ci`. The semver ranges in package.json are tight
# enough for reproducible builds.
- run: npm install --no-audit --no-fund
- run: npm run build
- run: npm test