Skip to content

fix(wrap): bypass commander for argv parsing, give clear error on '--… #4

fix(wrap): bypass commander for argv parsing, give clear error on '--…

fix(wrap): bypass commander for argv parsing, give clear error on '--… #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build (Node ${{ matrix.node }} / ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint (Biome)
run: npx biome check
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Smoke test — --version
run: node dist/index.js --version
- name: Smoke test — --help
run: node dist/index.js --help