Add a higher threshold alarm which we can use for known checkout failure reasons #293
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: | |
jobs: | |
knip: | |
name: detect unused exports | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
cache-dependency-path: support-frontend/yarn.lock | |
- name: Install | |
run: yarn | |
working-directory: support-frontend | |
- name: Knip check | |
run: yarn knip | |
working-directory: support-frontend |