Skip to content

op overhaul: 2k LOC dead-code purge, 9 real bug fixes, MCP annotation… #52

op overhaul: 2k LOC dead-code purge, 9 real bug fixes, MCP annotation…

op overhaul: 2k LOC dead-code purge, 9 real bug fixes, MCP annotation… #52

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [20, 22, 24]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: node --check src/index.js
- name: test suite
run: node scripts/run-tests.mjs