-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable Minimum code coverage check (#8)
* use PR base ref branch * remove cache to simplify workflow * remove data folder use real coverage * rename to use base and compare branches * improve descriptions * check if minimum-coverage-ratio is no exist * use zero minimum-coverage-ratio * add log messages and tests for code coverage min Ration * fix minimum ratio feature enable condition * use toFixed(2) for diff * add log messages * comment tests to check coverage * refactor tests running * use another command for master * set workflow failed * uncomment tests
- Loading branch information
1 parent
c51e59d
commit 819cabe
Showing
14 changed files
with
199 additions
and
708 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"check-coverage": false, | ||
"extension": [".js"], | ||
"include": ["src/**/*.js"], | ||
"exclude": ["coverage/**", "node_modules/**", "**/*.test.js"], | ||
"reporter": ["html", "text", "text-summary", "lcov"], | ||
"all": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"javascript.validate.enable": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.