Merge pull request #205 from skulidropek/issue-198 #472
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: Checking Dependencies | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| dist-deps-prune: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.14.0 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm -C packages/app build | |
| - name: Dist deps prune (lint) | |
| run: | | |
| pnpm dlx @prover-coder-ai/dist-deps-prune scan \ | |
| --package ./packages/app/package.json \ | |
| --prune-dev true \ | |
| --silent |