We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db5a966 commit cbd87a4Copy full SHA for cbd87a4
.github/workflows/github-ci.yaml
@@ -3,6 +3,8 @@ name: Unit Test 🧪
3
on:
4
push:
5
branches: ["main", "stg"]
6
+ paths-ignore:
7
+ - "**/coverage.svg"
8
pull_request:
9
10
@@ -69,6 +71,18 @@ jobs:
69
71
- name: Test
70
72
run: bun test
73
- name: Generating coverage badges
- uses: jpb06/jest-badges-action@v1.9.18
74
+ uses: ImBIOS/lcov-coverage-badge@v1
75
with:
- branches: main, stg
76
+ file: ./coverage/lcov.info
77
+ access_token: ${{ secret.GITHUB_TOKEN }}
78
+ style: flat
79
+ icon_name: googlecloud
80
+ icon_color: "ffffff"
81
+ label: "Coverage"
82
+ label_color: "ffffff"
83
+ critical: 60
84
+ criticalColor: "9c2c9c"
85
+ warning: 75
86
+ warningColor: "d68f0c"
87
+ success_color: "43ad43"
88
+ message_color: "ffffff"
0 commit comments