Files
ComfyUI_frontend/.github/workflows
snomiao 38695ae0b5 [ci] Remove all actions/cache steps from workflows
This commit removes the entire actions/cache steps (not just .cache
directory) from all workflow files to measure the true performance
impact of caching vs no caching.

Changes:
- ci-lint-format.yaml: Removed tool outputs cache
- ci-tests-storybook.yaml: Removed storybook build cache (both jobs)
- ci-tests-unit.yaml: Removed coverage and vitest cache
- api-update-electron-api-types.yaml: Removed tsbuildinfo cache
- api-update-manager-api-types.yaml: Removed tool cache and repo cache
- api-update-registry-api-types.yaml: Removed tool cache and repo cache
- release-draft-create.yaml: Removed tsbuildinfo cache
- release-pypi-dev.yaml: Removed dist and tsbuildinfo cache

Note: pnpm package caching via setup-node still remains active.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-20 13:44:22 +00:00
..
2025-10-17 19:23:42 -07:00
2025-10-17 19:23:42 -07:00

GitHub Workflows

Naming Convention

Workflow files follow a consistent naming pattern: <prefix>-<descriptive-name>.yaml

Category Prefixes

Prefix Purpose Example
ci- Testing, linting, validation ci-tests-e2e.yaml
release- Version management, publishing release-version-bump.yaml
pr- PR automation (triggered by labels) pr-claude-review.yaml
api- External Api type generation api-update-registry-api-types.yaml
i18n- Internationalization updates i18n-update-core.yaml

Documentation

Each workflow file contains comments explaining its purpose, triggers, and behavior. For specific details about what each workflow does, refer to the comments at the top of each .yaml file.

For GitHub Actions documentation, see Events that trigger workflows.