Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

chore: update knip configuration to run on pull_request #17

chore: update knip configuration to run on pull_request

chore: update knip configuration to run on pull_request #17

Workflow file for this run

name: Knip
on:
pull_request:
jobs:
run-knip:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.10.0
- name: Install toolchain
run: npm install -g bun && bun install
- name: Store PR number
run: echo ${{ github.event.number }} > pr-number.txt
- name: Run Knip
run: bun knip || bun knip --reporter json > knip-results.json
- name: Upload knip result
if: failure()
uses: actions/upload-artifact@v4
with:
name: knip-results
path: |
knip-results.json
pr-number.txt