mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-24 16:54:03 +00:00
## Summary Adds CI workflow to validate OSS build compliance by checking for proprietary fonts and non-approved dependency licenses. ## Context - Part of comprehensive OSS compliance effort (split from closed PR #6777) - Uses simple bash/grep approach following proven #8623 pattern - Complements telemetry checking in PR #8826 and existing #8354 ## Implementation ### Font Validation - Scans dist/ for proprietary ABCROM fonts (.woff, .woff2, .ttf, .otf) - Fails if any ABCROM fonts found in OSS builds - Provides clear fix instructions ### License Validation - Uses `license-checker` npm package - Validates all production dependencies - Only allows OSI-approved licenses: - MIT, Apache-2.0, BSD-2-Clause, BSD-3-Clause, ISC - 0BSD, BlueOak-1.0.0, Python-2.0, CC0-1.0 - Unlicense, CC-BY-4.0, CC-BY-3.0 - Common dual-license combinations ### Workflow Details - Two separate jobs for parallel execution - Runs on PRs and pushes to main/dev - Builds with `DISTRIBUTION=localhost` for OSS mode - Clear error messages with remediation steps ## Testing - [ ] Font check passes on current main (no ABCROM fonts in dist) - [ ] License check passes on current main (all approved licenses) - [ ] Intentional violation testing ## Related - Supersedes remaining parts of closed PR #6777 - Complements PR #8826 (Mixpanel telemetry) - Follows pattern from PR #8623 (simple bash/grep) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8828-Add-CI-validation-for-OSS-assets-fonts-and-licenses-3056d73d3650812390d5d91ca2f319fc) by [Unito](https://www.unito.io) --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com> Co-authored-by: bymyself <cbyrne@comfy.org>
101 lines
1.5 KiB
Plaintext
101 lines
1.5 KiB
Plaintext
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Package manager lockfiles (allow users to use different package managers)
|
|
bun.lock
|
|
bun.lockb
|
|
yarn.lock
|
|
|
|
# Cache files
|
|
.eslintcache
|
|
.prettiercache
|
|
.stylelintcache
|
|
|
|
node_modules
|
|
.pnpm-store
|
|
dist
|
|
dist-ssr
|
|
*.local
|
|
# Claude configuration
|
|
.claude/*.local.json
|
|
.claude/*.local.md
|
|
.claude/*.local.txt
|
|
CLAUDE.local.md
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
*.code-workspace
|
|
!.vscode/extensions.json
|
|
!.vscode/tailwind.json
|
|
!.vscode/custom-css.json
|
|
!.vscode/settings.json.default
|
|
!.vscode/launch.json.default
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
components.d.ts
|
|
|
|
# Ignore test data.
|
|
tests-ui/data/*
|
|
tests-ui/ComfyUI_examples
|
|
tests-ui/workflows/examples
|
|
coverage/
|
|
|
|
# Browser tests
|
|
/test-results/
|
|
/playwright-report/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
browser_tests/**/*-win32.png
|
|
browser_tests/local/
|
|
|
|
.env
|
|
|
|
dist.zip
|
|
|
|
/temp/
|
|
/tmp/
|
|
|
|
# Generated JSON Schemas
|
|
/schemas/
|
|
|
|
# Workflow templates assets
|
|
# Hosted on https://github.com/Comfy-Org/workflow_templates
|
|
/public/templates/
|
|
|
|
# Temporary repository directory
|
|
templates_repo/
|
|
|
|
# Vite's timestamped config modules
|
|
vite.config.mts.timestamp-*.mjs
|
|
|
|
# Linux core dumps
|
|
/core
|
|
|
|
*storybook.log
|
|
storybook-static
|
|
|
|
# MCP Servers
|
|
.playwright-mcp/*
|
|
|
|
.nx/cache
|
|
.nx/workspace-data
|
|
.cursor/rules/nx-rules.mdc
|
|
.github/instructions/nx.instructions.md
|
|
vite.config.*.timestamp*
|
|
vitest.config.*.timestamp*
|
|
|
|
# Weekly docs check output
|
|
/output.txt
|
|
|
|
.amp |