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 linting step for generated API types
- Add ESLint validation to registry and manager type generation workflows
- Ensures generated files meet code standards even though they're ignored in regular lint runs
- Uses --no-ignore flag to lint 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 8852563f40c9d027feddedb99d479df746979d65
5 changes: 5 additions & 0 deletions .github/workflows/update-manager-types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ jobs:
exit 1
fi

- name: Lint generated types
run: |
echo "Linting generated ComfyUI-Manager API types..."
npx eslint --no-ignore ./src/types/generatedManagerTypes.ts

- name: Check for changes
id: check-changes
run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/update-registry-types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ jobs:
exit 1
fi

- name: Lint generated types
run: |
echo "Linting generated Comfy Registry API types..."
npx eslint --no-ignore ./src/types/comfyRegistryTypes.ts

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