Skip to content

Commit b4ae129

Browse files
fix(ci): use unit tests in verify:release, remove prepublishOnly
verify:release was running test:all which includes integration tests requiring Chrome. The publish workflow doesn't install Chrome, causing CDP timeout failures. Integration tests already run separately in CI. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 40d7298 commit b4ae129

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
"test:all": "bun test",
3131
"build:web:landing": "bun run --cwd website/landing build",
3232
"build:web:docs": "bun run --cwd website/docs build",
33-
"verify:release": "bun run typecheck && bun run typecheck:mcp && bun run test:all && bun run build && bun run build:web:landing && bun run build:web:docs && npm_config_cache=.tmp-npm-cache npm pack --dry-run",
34-
"demo": "bun run demo/serve.ts",
35-
"prepublishOnly": "bun run verify:release"
33+
"verify:release": "bun run typecheck && bun run typecheck:mcp && bun run test && bun run build && bun run build:web:landing && bun run build:web:docs && npm_config_cache=.tmp-npm-cache npm pack --dry-run",
34+
"demo": "bun run demo/serve.ts"
3635
},
3736
"repository": {
3837
"type": "git",

0 commit comments

Comments
 (0)