We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66e08d3 commit 00ef3aeCopy full SHA for 00ef3ae
.github/workflows/main.yml
@@ -22,8 +22,14 @@ jobs:
22
- name: Prettier
23
run: npm run prettier
24
25
- - name: Test
26
- run: npm run test:unit
+ - name: Run tests with coverage
+ run: npm run test:unit -- --coverage
27
+
28
+ - name: Upload coverage report
29
+ uses: actions/upload-artifact@v4
30
+ with:
31
+ name: coverage-report
32
+ path: coverage/
33
34
- name: Build
35
run: npm run build
.gitignore
@@ -13,3 +13,6 @@ tsconfig.tsbuildinfo
13
# mcp registry
14
.mcpregistry_github_token
15
.mcpregistry_registry_token
16
17
+# Jest coverage output
18
+coverage/
0 commit comments