-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: set codecov to informational, remove dead code in nyc config
- remove the parsing of changed files for PRs via nyc.config.js - add codecov.yml and set reports to informational only (dont block PRs) - add codecov badge to README
- Loading branch information
1 parent
b37a0d4
commit 5d623a5
Showing
3 changed files
with
19 additions
and
43 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 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
informational: true | ||
patch: | ||
default: | ||
informational: 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 |
---|---|---|
@@ -1,41 +1,9 @@ | ||
/* eslint-disable max-len */ | ||
'use strict'; | ||
|
||
// const { execFileSync } = require('child_process'); | ||
|
||
const opts = { | ||
branches: 80, | ||
lines: 80, | ||
functions: 80, | ||
statements: 80, | ||
}; | ||
|
||
// Only generate coverage report for changed files in PR | ||
// see: https://github.com/actions/checkout/issues/438#issuecomment-1446882066 | ||
// https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables | ||
// if (process.env.GITHUB_BASE_REF !== undefined) { | ||
// console.log('Generating coverage report for changed files...'); | ||
// try { | ||
// const baseRef = execFileSync('git', [ | ||
// 'rev-parse', | ||
// `origin/${process.env.GITHUB_BASE_REF}`, | ||
// ]) | ||
// .toString() | ||
// .replace('\n', ''); | ||
// const headRef = process.env.GITHUB_SHA; | ||
// const stdout = execFileSync('git', [ | ||
// 'diff', | ||
// '--name-only', | ||
// `${baseRef}..${headRef}`, | ||
// ]).toString(); | ||
// opts = { | ||
// ...opts, | ||
// include: stdout.split('\n'), | ||
// }; | ||
// } catch (error) { | ||
// console.log('Error: ', error); | ||
// } | ||
// } | ||
|
||
console.log('nyc config: ', opts); | ||
module.exports = opts; |