Skip to content

Merge pull request #19 from interscript/models-index-v3 #59

Merge pull request #19 from interscript/models-index-v3

Merge pull request #19 from interscript/models-index-v3 #59

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with: { node-version: "22" }
- run: npm install
- run: npm run typecheck
- run: npm run lint
- run: npm run format:check
- name: Tests + production parity gate
run: npx vitest run
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with: { node-version: "22" }
- run: npm install
- run: npm run build
- name: Bundle smoke (wrangler dry run, no credentials)
run: npx wrangler deploy --dry-run --outdir dist-worker || true