Skip to content

Commit 107a3c9

Browse files
committed
fix
1 parent 971727e commit 107a3c9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,16 @@ async function run(): Promise<void> {
2626
const commentIdentifier = `<!-- codeCoverageDiffComment -->`
2727
const deltaCommentIdentifier = `<!-- codeCoverageDeltaComment -->`
2828
let totalDelta = null
29+
console.log(">>>>>>1")
2930

3031
if (rawTotalDelta !== null) {
3132
totalDelta = Number(rawTotalDelta)
3233
}
34+
console.log(">>>>>>2")
3335

3436
let commentId = null
35-
execSync(`${commandToRun} -- --changedSince=origin/develop`)
37+
execSync(`${commandToRun}`)
38+
console.log(">>>>>>3")
3639

3740
const codeCoverageNew = <CoverageReport>(
3841
JSON.parse(fs.readFileSync('coverage-summary.json').toString())

0 commit comments

Comments
 (0)