Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ jobs:
done

# Workflows must not invoke the Node toolchain (npm/npx/tsx/node).
if grep -rnE '(npm|npx|tsx|node) ' .github/workflows/*.yml; then
# Exception: app-build.yml drives the Tauri 2 webview UI (#181,
# FR-UI-01..09) — the Go single-implementation rule covers the
# DevAgent core; the app's UI stack is TS by the §20.4 decision.
if grep -rnE '(npm|npx|tsx|node) ' .github/workflows/*.yml \
| grep -v '^\.github/workflows/app-build\.yml:'; then
fail "Node toolchain invocation found in .github/workflows — CI runs the Go suite only (issues #205, #250)"
fi

Expand Down
2 changes: 1 addition & 1 deletion internal/tui/polish_contract_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ func TestLoopRunSigwinchRepaintsPromptly(t *testing.T) {

// Resize: narrower geometry, then fire SIGWINCH. drawLocked re-probes
// Size and full-clears (the sanctioned reflow clear).
env.bufEnv.cols = 60
env.cols = 60
env.winch <- os.Interrupt // any signal value wakes the repaint
runWaitFor(t, func() bool {
return strings.Contains(env.buf.String(), "\x1b[2J")
Expand Down
Loading