chore(deps): bump commander from 14.0.3 to 15.0.0 #68
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify: | |
| name: ${{ matrix.os }} · Node ${{ matrix.node }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| node: ["24"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| # Full history so manifest fixtures can resolve baselineRef=main | |
| # when CI runs on a non-main branch (e.g., Dependabot PRs). | |
| fetch-depth: 0 | |
| - name: Ensure local main ref exists for manifest baselineRef checks | |
| run: | | |
| if ! git rev-parse --verify --quiet main >/dev/null; then | |
| git branch main origin/main | |
| fi | |
| git rev-parse main >/dev/null | |
| - name: Setup Node ${{ matrix.node }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Audit dependencies (fail on high severity or above) | |
| run: npm audit --audit-level=high | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Test | |
| run: npm test | |
| - name: Build | |
| run: npm run build |