-
Notifications
You must be signed in to change notification settings - Fork 0
fix(ci): restore Stage Gate command contracts #156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,9 @@ | |
| "main": "index.js", | ||
| "scripts": { | ||
| "setup": "bun run scripts/setup-deps.ts", | ||
| "format:check": "biome check --config-path=biome.json apps packages scripts src tests", | ||
| "test": "bun test apps/runtime/src apps/runtime/tests/unit apps/desktop/tests/unit packages/*/tests scripts/tests tests/unit", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
On a clean Stage Gates runner, Useful? React with 👍 / 👎. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WARNING: Reply with |
||
| "test:coverage": "bun run tools/gates/runtime-coverage.mjs", | ||
| "build:dev": "bun setup && electrobun build", | ||
| "dev": "bun setup && electrobun dev", | ||
| "build:canary": "electrobun build --env=canary", | ||
|
|
@@ -63,6 +66,7 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@axe-core/playwright": "^4.10.0", | ||
| "@biomejs/biome": "2.5.11", | ||
| "@playwright/test": "^1.48.0", | ||
| "@types/bun": "^1.1.0", | ||
| "happy-dom": "^15.0.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WARNING:
format:checkusesbiome check, which runs lint rules in addition to format checks. If the gate is intended to validate only formatting,biome formatwould be more precise; lint failures unrelated to formatting will also block this command.Reply with
@kilocode-bot fix itto have Kilo Code address this issue.