Skip to content

Fix schema generation with embedded definitions #301

Fix schema generation with embedded definitions

Fix schema generation with embedded definitions #301

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22, 24]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
cache: "npm"
- run: npm ci
- run: npm run format:check
- run: npm run lint
- run: npm run build:clean && git diff --exit-code
- run: npm run typecheck # typecheck depends on the `dist` directory for type-helpers.ts
- run: npm test