Skip to content

Commit c9a4b77

Browse files
committed
ci: add verbose flag output verification step
Signed-off-by: leocavalcante <leo@cavalcante.dev>
1 parent ea1d79d commit c9a4b77

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,10 @@ jobs:
7171
test ! -f ~/.config/opencode/agents/opencoder-planner.md
7272
test ! -f ~/.config/opencode/agents/opencoder-builder.md
7373
echo "All agents removed successfully"
74+
75+
- name: Test verbose output format
76+
run: |
77+
output=$(node postinstall.mjs --verbose --dry-run 2>&1)
78+
echo "$output"
79+
echo "$output" | grep -q "\[VERBOSE\]" || (echo "ERROR: Missing [VERBOSE] markers in output" && exit 1)
80+
echo "Verbose output format verified"

0 commit comments

Comments
 (0)