name: CI on: pull_request: branches: - main push: branches: - main workflow_dispatch: jobs: build: name: Build (Node ${{ matrix.node-version }}) runs-on: ubuntu-latest strategy: fail-fast: false matrix: node-version: - 20 - 24 steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: npm - name: Install dependencies run: npm ci - name: Build run: npm run build - name: Verify publish artifact run: npm pack --dry-run