Skip to content

release: v0.13.0 — statistical model comparison suite (corrected t-te… #135

release: v0.13.0 — statistical model comparison suite (corrected t-te…

release: v0.13.0 — statistical model comparison suite (corrected t-te… #135

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: TypeScript typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Unit tests (vitest)
run: npm test
- name: Production build
run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: tamias-dist
path: dist
retention-days: 14