-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #442 from RBC/hotfix/codecov-token
- Loading branch information
Showing
4 changed files
with
11 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,24 +45,11 @@ jobs: | |
run: | | ||
npm run test-coverage-ci || echo "Silently ignoring coverage threshold limit..." | ||
- name: Check if a valid lcov.info file is generated | ||
id: check-lcov-non-empty | ||
run: | | ||
if [ -s "./coverage/lcov.info" ]; then | ||
echo "lcov.info is not empty." | ||
echo "isNotEmpty=true" >> $GITHUB_OUTPUT | ||
else | ||
echo "lcov.info is empty." | ||
echo "isNotEmpty=false" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Upload test coverage report | ||
if: ${{ steps.check-lcov-non-empty.outputs.isNotEmpty == 'true'}} | ||
uses: codecov/[email protected] | ||
with: | ||
files: ./coverage/lcov.info | ||
flags: unittests | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
# - name: Exit if coverage condition not met | ||
# if: ${{ steps.test.outputs.exit_code }} != 0 | ||
# run: exit ${{ steps.test.outputs.exit_code }} | ||
|
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'); | ||
|
||
let opts = { | ||
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; |