updated publisher name and id #104
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
name: Check Code Coverage | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
code-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
run: cd blackduck-security-task && npm ci | |
- name: Unit Test Cases | |
id: unit-test-cases | |
shell: bash | |
run: | | |
cd blackduck-security-task && npm run test | |
coverageFile="coverage/index.html" | |
### fetching line coverage from coverage/index.html file | |
coverageSpan=$(grep -B 1 '<span class="quiet">Lines</span>' $coverageFile | head -n 1) | |
coverageHtml=$(echo "$coverageSpan" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//') | |
coverageInPercent=$(echo $coverageHtml | sed -n 's/.*<span class="strong">\([0-9.]*%\).*/\1/p' | tr -d ' ') | |
echo "Line Coverage: $coverageInPercent" | |
### remove percentage sign from coverageInPercent and convert to a floatin-point number | |
coverageValue=$(echo "$coverageInPercent" | tr -d '%' | sed 's/,/./g') | |
### check if the coverage is below 90% | |
if [[ $coverageValue < 90 ]]; then | |
echo "##[error]Line coverage is below 90%" | |
exit 1 | |
fi |