mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
config: yml,workflows,github (2 files)
This commit is contained in:
6
.github/workflows/detect-stubs.yml
vendored
6
.github/workflows/detect-stubs.yml
vendored
@@ -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)
|
||||
|
||||
4
.github/workflows/size-limits.yml
vendored
4
.github/workflows/size-limits.yml
vendored
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user