Skip to content

Commit

Permalink
⚗️ Test for CI System (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
soo-bak committed Jul 7, 2024
1 parent b6748f7 commit 327e9e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/UnitTestsAndCodeCoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@ jobs:
function formatCoverage(coverage) {
const coverageNum = parseFloat(coverage);
if (coverageNum === 100) {
return \`**\${coverageNum}%**`;
return \`**\${coverageNum}%**\`;
} else if (coverageNum >= 80) {
return \`_\${coverageNum}%_`;
return \`_\${coverageNum}%_\`;
} else {
return \`~~\${coverageNum}%~~`;
return \`~~\${coverageNum}%~~\`;
}
}
Expand Down

0 comments on commit 327e9e5

Please sign in to comment.