Skip to content

docs: README claimed 0.2.0 against the 1.5.0 spec; it ships 0.4.0 aga… #16

docs: README claimed 0.2.0 against the 1.5.0 spec; it ships 0.4.0 aga…

docs: README claimed 0.2.0 against the 1.5.0 spec; it ships 0.4.0 aga… #16

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install deps (pinned)
run: npm ci
- name: Regenerate client from openapi.json
run: npm run generate
- name: Fail if the committed client is stale
run: |
git diff --exit-code -- src \
|| (echo "::error::Generated client is out of date. Run 'npm run generate' and commit." && exit 1)
- name: Fail if the README's version claims have drifted
run: python3 .github/check-readme-versions.py
- name: Typecheck (proves the client + typed example compile)
run: npm run typecheck