feat: schema validation #60
Workflow file for this run
This file contains 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: Knip | |
on: | |
pull_request: | |
workflow_dispatch: | |
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: yarn install | |
- name: Store PR number | |
run: echo ${{ github.event.number }} > pr-number.txt | |
- name: Run Knip | |
run: yarn knip || yarn 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 |