From 9e86fd995ccc0dd30eb4c7100190d6b1fc3730a8 Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Sun, 21 Jun 2026 14:23:19 +0800 Subject: [PATCH] fix(ci): repoint the demo smoke test at the dsh-stdio-agent bin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CI "Demo smoke test" step booted the deleted examples/echo-agent/start.ts (removed when the boot glue moved into the dsh-stdio-agent bin), so CI failed on node 24 + 26 while the local gates and e2e passed. Invoke `pnpm run demo:echo` instead of hardcoding the boot path — that routes through the canonical demo script, so the smoke can never drift from it again. The output assertions and the .sessions/_no-cwd/main-session-*.jsonl artifact check are unchanged (verified the new bin produces identical output). --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 562ffca1bc..d9c5ee0350 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,7 @@ jobs: - name: Demo smoke test run: | set -euo pipefail - out=$(printf 'echo ci smoke\n' | timeout 60 node --expose-internals --import tsx examples/echo-agent/start.ts 2>&1) + out=$(printf 'echo ci smoke\n' | timeout 60 pnpm run demo:echo 2>&1) echo "$out" echo "$out" | grep -q '\[tool call\] echo({"text":"ci smoke"})' echo "$out" | grep -q '\[tool result\] ECHO: CI SMOKE'