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 e3bb748 commit 3d566dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/UnitTestsAndCodeCoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ jobs:
function createCommentBody(summary) {
const lineCoverage = \${summary.Linecoverage[0]} === "100" ?
`$\\textbf{\\color{green}{\${summary.Linecoverage[0]}\\%}}$` :
`$\\textbf{\\color{red}{\${summary.Linecoverage[0]}\\%}}$`;
`\$\\textbf{\\color{green}{\${summary.Linecoverage[0]}\\%}}` :
`\$\\textbf{\\color{red}{\${summary.Linecoverage[0]}\\%}}`;
const methodCoverage = \${summary.Methodcoverage[0]} === "100" ?
`$\\textbf{\\color{green}{\${summary.Methodcoverage[0]}\\%}}$` :
`$\\textbf{\\color{red}{\${summary.Methodcoverage[0]}\\%}}$`;
`\$\\textbf{\\color{green}{\${summary.Methodcoverage[0]}\\%}}` :
`\$\\textbf{\\color{red}{\${summary.Methodcoverage[0]}\\%}}`;
return `
## 🍉 Code Coverage Summary 🧐
Expand All @@ -160,7 +160,7 @@ jobs:
| Method Coverage | \${methodCoverage} |
---
\`;
`;
}
async function deleteExistingCommentAndCreateNew(body) {
Expand Down

0 comments on commit 3d566dd

Please sign in to comment.