Skip to content

Release Cleanup

Release Cleanup #20

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
name: Test on Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x, 24.x, 25.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: packages/cli/package-lock.json
- name: Install dependencies
working-directory: packages/cli
run: npm ci
- name: Lint (type-check)
working-directory: packages/cli
run: npm run lint
- name: Run tests
working-directory: packages/cli
run: npm test
- name: Build
working-directory: packages/cli
run: npm run build
- name: Test CLI entry point
working-directory: packages/cli
run: node bin/run.js --help