Skip to content

Add empirical marker-precedence verification #7

Add empirical marker-precedence verification

Add empirical marker-precedence verification #7

Workflow file for this run

name: tests
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Smoke-test CLI module loads
run: node -e "const p = require('./src/pipeline.js'); if (typeof p.buildAuditTrail !== 'function') process.exit(1);"