Skip to content

feat: smarter compression — format-aware, intent-conditioned, self-tu… #16

feat: smarter compression — format-aware, intent-conditioned, self-tu…

feat: smarter compression — format-aware, intent-conditioned, self-tu… #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: test (node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ['20', '22']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Unit + integration tests
run: npm test
- name: Build
run: npm run build