chore(deps): bump next from 15.5.10 to 15.5.14 #44
Workflow file for this run
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: Knip Validation | |
| on: | |
| push: | |
| branches: [master, develop] | |
| pull_request: | |
| jobs: | |
| knip: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: Install Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Build application | |
| run: bun run build | |
| # HIGH CONFIDENCE - Hard fail on unused dependencies | |
| - name: Validate Dependency Usage | |
| run: bunx knip:deps | |
| # MEDIUM CONFIDENCE - Report only (warning) | |
| - name: Validate File Usage | |
| run: bunx knip:files | |
| continue-on-error: true | |
| # LOW CONFIDENCE - Report only (warning) | |
| - name: Validate Export Usage | |
| run: bunx knip:exports | |
| continue-on-error: true | |
| # LOW CONFIDENCE - Report only (warning) | |
| - name: Validate Production Dependencies | |
| run: bunx knip:prod | |
| continue-on-error: true | |
| - name: Notify success | |
| run: echo "Knip validation completed!" |