Skip to content

feat: v0.3 (#11)

feat: v0.3 (#11) #30

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
paths:
- 'src/**'
- 'program/**'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/ci.yml'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- 'src/**'
- 'program/**'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/ci.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Format
run: npm run format:check
- name: Check deps
run: npm run check:deps
- name: Build
run: npm run build