Skip to content

Commit bd6d884

Browse files
committed
nvm code coverage report
1 parent 764ee07 commit bd6d884

2 files changed

Lines changed: 4 additions & 22 deletions

File tree

.github/workflows/node-ci.yml

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ env:
2424
jobs:
2525
lint-build-test-node:
2626
runs-on: ubuntu-latest
27+
strategy:
28+
matrix:
29+
2730
steps:
2831
- name: Set up Git repository
2932
uses: actions/checkout@v4
@@ -52,26 +55,6 @@ jobs:
5255
- name: Run tests
5356
working-directory: "."
5457
run: npm run test
55-
56-
- name: Code Coverage Report
57-
uses: irongut/CodeCoverageSummary@v1.3.0
58-
with:
59-
filename: "./@(apps|libs)/*/coverage/cobertura-coverage.xml"
60-
badge: true,
61-
fail_below_min: false
62-
format: markdown
63-
hide_branch_rate: false
64-
hide_complexity: false
65-
indicators: true
66-
output: both
67-
thresholds: "50 75"
68-
69-
- name: Add Coverage PR Comment
70-
uses: marocchino/sticky-pull-request-comment@v2
71-
if: github.event_name == 'pull_request'
72-
with:
73-
recreate: true
74-
path: code-coverage-results.md
7558

7659
build-session-manager-container:
7760
needs: lint-build-test-node

vitest.shared.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ export default defineConfig({
1313
provider: 'istanbul', // or 'v8'
1414
// Text to enable quick summary in terminal
1515
// HTML for interactive view, with line by line breakdown
16-
// cobertura for CI/CD pipeline
17-
reporter: ['text', 'html', 'cobertura'],
16+
reporter: ['text', 'html'],
1817
},
1918
},
2019
});

0 commit comments

Comments
 (0)