Skip to content

Commit af19345

Browse files
Fix typecheck command in PR quality checks workflow
The workflow was running 'yarn turbo run type-check' which includes all packages, but the docs package has TypeScript errors. The existing 'yarn typecheck' script in package.json runs with '--filter=@lambdacurry/forms' to only check the main components package. Updated the workflow to match this behavior. Co-authored-by: Jake Ruesink <jake@lambdacurry.dev>
1 parent 69c6859 commit af19345

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/pr-quality-checks.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,11 @@ jobs:
5656
run: yarn turbo run lint
5757

5858
- name: Run Turbo typecheck
59-
run: yarn turbo run type-check
59+
run: yarn turbo run type-check --filter=@lambdacurry/forms
6060

6161
- name: Summary
6262
run: |
6363
echo "## PR Quality Checks Summary" >> $GITHUB_STEP_SUMMARY
6464
echo "✅ Linting passed (Biome)" >> $GITHUB_STEP_SUMMARY
6565
echo "✅ TypeScript compilation passed" >> $GITHUB_STEP_SUMMARY
6666
echo "✅ All checks completed with Turbo caching" >> $GITHUB_STEP_SUMMARY
67-

0 commit comments

Comments
 (0)