Skip to content

docs(releasing): note marketplace type controls plugin spawn path #7

docs(releasing): note marketplace type controls plugin spawn path

docs(releasing): note marketplace type controls plugin spawn path #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Lint · Typecheck · Test · Build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci --no-audit --no-fund
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Verify bundled CLI runs
run: node dist/cli.js --help