Skip to content

Commit 75bde18

Browse files
author
vividcoder
committed
fix(ci): increase diff icon threshold to 0.1% to filter noise
1 parent 7b70695 commit 75bde18

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/coverage-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ jobs:
209209
}
210210
211211
function diffIcon(diff) {
212-
if (diff > 0.01) return '🟢';
213-
if (diff < -0.01) return '🔴';
212+
if (diff > 0.1) return '🟢';
213+
if (diff < -0.1) return '🔴';
214214
return '⚪';
215215
}
216216

0 commit comments

Comments
 (0)