chore(deps): update dependency knip to ^6.37.0 (#512) #2191
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: main | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm format-check | |
| - run: pnpm typecheck | |
| - run: pnpm lint | |
| - run: pnpm knip | |
| - run: pnpm coverage | |
| - run: pnpm build | |
| - uses: freckle/check-git-clean-action@v1 | |
| with: | |
| hint: "Run pnpm build to update your dist/" |