mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-21 15:24:09 +00:00
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>
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.