Skip to content

Commit ab4441a

Browse files
committed
exclude tests from console.log check in CI
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
1 parent ea1ede0 commit ab4441a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ jobs:
7979
8080
- name: Check for console.log statements
8181
run: |
82-
if grep -r "console\.log" src/ test/ --exclude="setup_remote_config.ts"; then
83-
echo "❌ Found console.log statements (should use logger)"
82+
if grep -r "console\.log" src/ --exclude="setup_remote_config.ts"; then
83+
echo "❌ Found console.log statements in src/ (should use logger)"
8484
exit 1
8585
else
86-
echo "✅ No console.log statements found"
86+
echo "✅ No console.log statements found in src/"
8787
fi
8888
8989
- name: Test MCP Bundle creation

0 commit comments

Comments
 (0)