Skip to content

Commit c0412ba

Browse files
committed
fix: format generated files in CI workflow after schema generation
- Add formatting step after schema generation to ensure generated files meet Prettier standards - This prevents formatting check failures on auto-generated code
1 parent ae0742d commit c0412ba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ jobs:
104104
- name: Generate schemas (required for TypeScript compilation)
105105
run: npm run generate:schemas
106106

107+
- name: Format generated files
108+
run: npm run format
109+
107110
# Quality checks (must pass for all further steps)
108111
- name: Run lint (fast fail)
109112
run: npm run lint

0 commit comments

Comments
 (0)