Skip to content

Bump the dev-tools group across 1 directory with 2 updates #30

Bump the dev-tools group across 1 directory with 2 updates

Bump the dev-tools group across 1 directory with 2 updates #30

Workflow file for this run

name: CI
on:
# Every branch, not just main and develop: a feature branch previously ran no CI at all,
# so a push had to become a PR before anything was checked.
push:
branches: ['**']
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
name: Lint, build & test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Node 20 reached end of life in April 2026, so 22 is the floor.
node-version: ["22", "24"]
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
with:
version: 10
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Smoke test - help output
run: node dist/src/cli/main.js --help