Skip to content

Release v0.2.0: AI-first discovery and workflow polish #9

Release v0.2.0: AI-first discovery and workflow polish

Release v0.2.0: AI-first discovery and workflow polish #9

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install
run: npm install
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Test
run: npm run test