From d351343aa85b7c85a4faf48c9b7cc63757398f14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=A9=98?= Date: Wed, 6 May 2026 14:33:16 +0000 Subject: [PATCH] fix: pure data role packages use 'echo no tests' instead of 'bun test' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit workflow-role-coder and workflow-role-planner have no test files — bun test exits 1 on empty. Changed to 'echo no tests' for clean CI. 小橘 --- packages/workflow-role-coder/package.json | 2 +- packages/workflow-role-planner/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/workflow-role-coder/package.json b/packages/workflow-role-coder/package.json index c70d800..eaaa949 100644 --- a/packages/workflow-role-coder/package.json +++ b/packages/workflow-role-coder/package.json @@ -6,7 +6,7 @@ "types": "src/index.ts", "scripts": { "build": "echo 'TODO'", - "test": "bun test" + "test": "echo no tests" }, "dependencies": { "@uncaged/workflow": "workspace:*", diff --git a/packages/workflow-role-planner/package.json b/packages/workflow-role-planner/package.json index a9f9fc4..b94dacf 100644 --- a/packages/workflow-role-planner/package.json +++ b/packages/workflow-role-planner/package.json @@ -6,7 +6,7 @@ "types": "src/index.ts", "scripts": { "build": "echo 'TODO'", - "test": "bun test" + "test": "echo no tests" }, "dependencies": { "@uncaged/workflow": "workspace:*",