Skip to content

Commit

Permalink
ci: test coverage working
Browse files Browse the repository at this point in the history
  • Loading branch information
ohager committed Aug 24, 2024
1 parent 17cda06 commit 39f5fa1
Show file tree
Hide file tree
Showing 12 changed files with 2,068 additions and 163 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,5 @@ dist
# jetbrains

.idea
.turbo
.turbo
coverage.json
7 changes: 7 additions & 0 deletions generate-coverage-report.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

#rm -rf .nyc_output
mkdir -p .nyc_output
find packages/*/coverage -name '*.json' -exec cp {} .nyc_output/ \;
nyc merge .nyc_output coverage.json
nyc report --reporter=lcov
Loading

0 comments on commit 39f5fa1

Please sign in to comment.