Skip to content

feat: v1.1 — Intent Graph, Semantic Guards, Biometrics, Dashboard, Ho… #21

feat: v1.1 — Intent Graph, Semantic Guards, Biometrics, Dashboard, Ho…

feat: v1.1 — Intent Graph, Semantic Guards, Biometrics, Dashboard, Ho… #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-test:
name: Build & Test (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20', '22']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Build all packages
run: npm run build
- name: Run all tests
run: npm test
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- run: npm ci
- run: npm run build
- run: npm run typecheck