diff --git a/.github/workflows/detect-stubs.yml b/.github/workflows/detect-stubs.yml index c4948cc93..7b919afbb 100644 --- a/.github/workflows/detect-stubs.yml +++ b/.github/workflows/detect-stubs.yml @@ -46,19 +46,19 @@ jobs: # Pattern-based stub detection - name: Detect stub patterns id: detect-patterns - run: npx tsx scripts/detect-stub-implementations.ts > stub-patterns.json + run: npx tsx ../../tools/detect-stub-implementations.ts > stub-patterns.json continue-on-error: true # Implementation completeness analysis - name: Analyze implementation completeness id: analyze-completeness - run: npx tsx scripts/analyze-implementation-completeness.ts > implementation-analysis.json + run: npx tsx ../../tools/analyze-implementation-completeness.ts > implementation-analysis.json continue-on-error: true # Generate detailed report - name: Generate stub report id: generate-report - run: npx tsx scripts/generate-stub-report.ts > stub-report.md + run: npx tsx ../../tools/generate-stub-report.ts > stub-report.md continue-on-error: true # Check for unimplemented TODOs in changed files (PR only) diff --git a/.github/workflows/size-limits.yml b/.github/workflows/size-limits.yml index c02818b99..0d7d41426 100644 --- a/.github/workflows/size-limits.yml +++ b/.github/workflows/size-limits.yml @@ -4,7 +4,7 @@ on: pull_request: paths: - 'frontends/nextjs/src/**/*.{ts,tsx,js,jsx}' - - 'scripts/enforce-size-limits.ts' + - 'tools/enforce-size-limits.ts' - '.github/workflows/size-limits.yml' push: branches: @@ -33,7 +33,7 @@ jobs: run: npm ci - name: Check code size limits - run: npx tsx ../../scripts/enforce-size-limits.ts + run: npx tsx ../../tools/enforce-size-limits.ts - name: Upload report if: always()