-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code coverage report fixes, Action updates, added Health Score check (#…
…62) * Integrate health score, update GH actions and use org-wide codecov token to upload coverage reports. Drop use of third party lib to report coverage * Add codecov badge, tweak maintainer guide.
- Loading branch information
Showing
6 changed files
with
24 additions
and
10 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
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json", | ||
"fmt": { | ||
"files": { | ||
"include": ["src", "docs", "README.md"] | ||
"include": ["src", "docs", "README.md"], | ||
"exclude": ["src/tests/fixtures"] | ||
}, | ||
"options": { | ||
"semiColons": true, | ||
|
@@ -15,7 +16,8 @@ | |
}, | ||
"lint": { | ||
"files": { | ||
"include": ["src"] | ||
"include": ["src"], | ||
"exclude": ["src/tests/fixtures"] | ||
}, | ||
"rules": { | ||
// [TODO]: Remove exclusion after we remove Deno.run | ||
|
@@ -25,7 +27,8 @@ | |
"lock": false, | ||
"tasks": { | ||
"test": "deno fmt --check && deno lint && deno test --allow-read", | ||
"coverage": "rm -rf .coverage && deno test --allow-read --coverage=.coverage src && deno coverage --exclude=fixtures --exclude=test --lcov --output=lcov.info .coverage && deno run --allow-read https://deno.land/x/[email protected]/cli.ts" | ||
"generate-lcov": "rm -rf .coverage && deno test --reporter=dot --allow-read --coverage=.coverage && deno coverage --exclude=fixtures --exclude=test --lcov --output=lcov.info .coverage", | ||
"test:coverage": "deno task generate-lcov && deno coverage --exclude=fixtures --exclude=test .coverage" | ||
}, | ||
"test": { | ||
"files": { | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default async function thisShouldNotCompile() { | ||
const _yes = "no"; | ||
return await { outputs: { ye } }; | ||
return await { outputs: { ye }; | ||
} |
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