From fcda0ee4f19942abab8fedda147fe8361778f888 Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Wed, 8 Apr 2020 13:47:01 -0500 Subject: [PATCH] Are we doing anything? --- dist/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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,