We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 971727e commit 107a3c9Copy full SHA for 107a3c9
src/main.ts
@@ -26,13 +26,16 @@ async function run(): Promise<void> {
26
const commentIdentifier = `<!-- codeCoverageDiffComment -->`
27
const deltaCommentIdentifier = `<!-- codeCoverageDeltaComment -->`
28
let totalDelta = null
29
+ console.log(">>>>>>1")
30
31
if (rawTotalDelta !== null) {
32
totalDelta = Number(rawTotalDelta)
33
}
34
+ console.log(">>>>>>2")
35
36
let commentId = null
- execSync(`${commandToRun} -- --changedSince=origin/develop`)
37
+ execSync(`${commandToRun}`)
38
+ console.log(">>>>>>3")
39
40
const codeCoverageNew = <CoverageReport>(
41
JSON.parse(fs.readFileSync('coverage-summary.json').toString())
0 commit comments