Skip to content

Commit 792978b

Browse files
build: CI 添加通过过滤
1 parent 19229d9 commit 792978b

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
run: bunx tsc --noEmit
2525

2626
- name: Test with Coverage
27-
run: bun test --coverage --coverage-reporter=lcov
27+
run: |
28+
set -o pipefail
29+
bun test --coverage --coverage-reporter=lcov 2>&1 | grep -vE '^\s*(\(pass\)|\(skip\))' | sed '/^.*\/__tests__\/.*:$/d' | cat -s
2830
2931
- name: Upload coverage to Codecov
3032
uses: codecov/codecov-action@v5

bun.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
},
6262
"dependencies": {
6363
"@agentclientprotocol/sdk": "^0.19.0",
64-
"@claude-code-best/mcp-chrome-bridge": "^2.0.7",
64+
"@claude-code-best/mcp-chrome-bridge": "^2.0.8",
6565
"ws": "^8.20.0"
6666
},
6767
"devDependencies": {

0 commit comments

Comments
 (0)