Skip to content

ci(workflows): add CI workflow + auto-create GitHub Releases #1

ci(workflows): add CI workflow + auto-create GitHub Releases

ci(workflows): add CI workflow + auto-create GitHub Releases #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: "lts/*"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build (typecheck + emit)
run: npm run build
- name: Run tests
run: npm test