Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: Add auto-fix linting step for generated API types
- Add ESLint validation with auto-fix to registry and manager type generation workflows
- Ensures generated files meet code standards and automatically fixes any issues
- Uses --no-ignore --fix flags to lint and fix specific files despite ESLint ignore patterns

Co-authored-by: Qwen-Coder <[email protected]>
  • Loading branch information
christian-byrne and qwencoder committed Aug 12, 2025
commit a6691aa00fe2d78e2443ba6b3b021dad548cf224
2 changes: 1 addition & 1 deletion .github/workflows/update-manager-types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Lint generated types
run: |
echo "Linting generated ComfyUI-Manager API types..."
npx eslint --no-ignore ./src/types/generatedManagerTypes.ts
npx eslint --no-ignore --fix ./src/types/generatedManagerTypes.ts

- name: Check for changes
id: check-changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-registry-types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Lint generated types
run: |
echo "Linting generated Comfy Registry API types..."
npx eslint --no-ignore ./src/types/comfyRegistryTypes.ts
npx eslint --no-ignore --fix ./src/types/comfyRegistryTypes.ts

- name: Check for changes
id: check-changes
Expand Down