Skip to content

Update CHANGELOG with Wave 5.1 validation sprint + test strengthening #17

Update CHANGELOG with Wave 5.1 validation sprint + test strengthening

Update CHANGELOG with Wave 5.1 validation sprint + test strengthening #17

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: Lint (Biome)
run: npx biome check
- name: Typecheck (root)
run: npx tsc --noEmit
- name: Typecheck (web)
run: cd web && npm ci && npx tsc -b
- name: Test (web)
run: cd web && npx vitest run
- name: Dead code (Knip)
run: npx knip
- name: Unit tests
run: npm run test:unit