diff --git a/dist/index.js b/dist/index.js index b678a52..2ed1e74 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5060,6 +5060,7 @@ function generateSummary(annotation) { } async function run() { try { + core_1.debug("application started"); const path = core_1.getInput('path'); const numFailures = parseInt(core_1.getInput('numFailures')); const accessToken = core_1.getInput('access-token'); @@ -5076,7 +5077,6 @@ async function run() { **${results.failed} tests failed** ${testSummary} -} `; const response = await octokit.checks.create({ head_sha: github_1.context.sha, diff --git a/src/main.ts b/src/main.ts index 01d2f5a..564c5fa 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,6 +8,7 @@ function generateSummary(annotation: Annotation): string { async function run(): Promise { try { + debug("application started") const path = getInput('path') const numFailures = parseInt(getInput('numFailures')) const accessToken = getInput('access-token') @@ -31,7 +32,6 @@ async function run(): Promise { **${results.failed} tests failed** ${testSummary} -} ` const response = await octokit.checks.create({ head_sha: context.sha,