Skip to content

Update dependency knip to v6.13.1 #10209

Update dependency knip to v6.13.1

Update dependency knip to v6.13.1 #10209

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- node: '22.21.1'
optional: false
- node: '24'
optional: false
- node: '26'
optional: true
continue-on-error: ${{ matrix.optional }}
name: Node ${{ matrix.node }}${{ matrix.optional && ' (optional)' || '' }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install
- run: pnpm test:ci
env:
NODE_OPTIONS: '--test-reporter=dot'