Skip to content

docs: prominent disclaimer — research/education only, user is solely … #3

docs: prominent disclaimer — research/education only, user is solely …

docs: prominent disclaimer — research/education only, user is solely … #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run typecheck
- run: npm run build
- run: npm test