We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0291e7b commit 971727eCopy full SHA for 971727e
src/main.ts
@@ -32,7 +32,7 @@ async function run(): Promise<void> {
32
}
33
34
let commentId = null
35
- execSync(`${commandToRun} -- --changeSince=origin/develop`)
+ execSync(`${commandToRun} -- --changedSince=origin/develop`)
36
37
const codeCoverageNew = <CoverageReport>(
38
JSON.parse(fs.readFileSync('coverage-summary.json').toString())
@@ -44,6 +44,7 @@ async function run(): Promise<void> {
44
const codeCoverageOld = <CoverageReport>(
45
JSON.parse(fs.readFileSync('develop-coverage-summary.json').toString())
46
)
47
+ console.log(codeCoverageOld)
48
const currentDirectory = execSync('pwd')
49
.toString()
50
.trim()
0 commit comments