Conversation
* docs: add contributing, security, and issue/PR templates
Add community health files to round out the repo:
- CONTRIBUTING.md — setup, dev/PR workflow, coding standards, validation steps
- SECURITY.md — supported versions, private vulnerability reporting, response SLAs
- .github/PULL_REQUEST_TEMPLATE.md — what/why, test evidence, checklist
- .github/ISSUE_TEMPLATE/{bug_report,feature_request}.yml — structured issue forms
- .github/ISSUE_TEMPLATE/config.yml — disable blank issues, route to discussions/security/docs
CODE_OF_CONDUCT.md already exists upstream, so it is left as-is.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* docs: use a single security contact address
Drop the secondary fallback so SECURITY.md points at one
address (security@codeux.ai).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
…ed (#1842) The Playwright workflow restored .cache/tsc (the server build's --tsBuildInfoFile) but never cached the matching dist/ output. On a cache hit, incremental tsc reads the restored .tsbuildinfo, concludes nothing changed, and emits nothing — leaving dist/index.js absent. The Playwright webServer then fails to start with "Cannot find module dist/index.js". This made the job pass only when the tsc cache missed and fail whenever a prior run (e.g. on main) had populated the shared e2e cache key, which matched the intermittent failure pattern in run history. Cache only Vite's transform cache and drop .cache/tsc so the server tsc always performs a full emit. Vite always emits, so its cache was never affected. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Promotes
devintomain. This brings the community health files merged in #1840 to the default branch.Included
security@codeux.ai), response SLAsCODE_OF_CONDUCT.mdalready existed and is unchanged.Notes
🤖 Generated with Claude Code