Skip to content

fix(s7,s12): orchestrator workflow fixes + model routing stabilization #101

fix(s7,s12): orchestrator workflow fixes + model routing stabilization

fix(s7,s12): orchestrator workflow fixes + model routing stabilization #101

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Lint, Typecheck, Test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build (packages first for type resolution)
run: npx turbo build
- name: Typecheck
run: npx turbo typecheck
- name: Test
run: npx turbo test