Skip to content

v0.0.1

v0.0.1 #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: TypeScript check
run: npm run typecheck
- name: Tests
run: npm test
- name: Build
run: npm run build
- name: Security audit
run: npm audit --audit-level=high