diff --git a/dist/index.js b/dist/index.js index 6eb33c5..5e2edf1 100644 --- a/dist/index.js +++ b/dist/index.js @@ -413,6 +413,7 @@ class TestReporter { core.info(`Check run URL: ${resp.data.url}`); core.info(`Check run HTML: ${resp.data.html_url}`); if (this.showHTMLNotice) { + core.info('*** showhtmlnotice set to true'); console.log(`::notice title=Test Results::${resp.data.html_url}`); } return results; diff --git a/src/main.ts b/src/main.ts index 4b9bcdb..03b5dc3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -200,6 +200,7 @@ class TestReporter { core.info(`Check run URL: ${resp.data.url}`) core.info(`Check run HTML: ${resp.data.html_url}`) if (this.showHTMLNotice) { + core.info('*** showhtmlnotice set to true') console.log(`::notice title=Test Results::${resp.data.html_url}`) }