Skip to content

chore(deps): bump next from 15.5.10 to 15.5.14 #44

chore(deps): bump next from 15.5.10 to 15.5.14

chore(deps): bump next from 15.5.10 to 15.5.14 #44

Workflow file for this run

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!"