This repository was archived by the owner on Dec 26, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5060,6 +5060,7 @@ function generateSummary(annotation) {
50605060}
50615061async function run() {
50625062 try {
5063+ core_1.debug("application started");
50635064 const path = core_1.getInput('path');
50645065 const numFailures = parseInt(core_1.getInput('numFailures'));
50655066 const accessToken = core_1.getInput('access-token');
@@ -5076,7 +5077,6 @@ async function run() {
50765077**${results.failed} tests failed**
50775078
50785079${testSummary}
5079- }
50805080`;
50815081 const response = await octokit.checks.create({
50825082 head_sha: github_1.context.sha,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ function generateSummary(annotation: Annotation): string {
88
99async function run ( ) : Promise < void > {
1010 try {
11+ debug ( "application started" )
1112 const path = getInput ( 'path' )
1213 const numFailures = parseInt ( getInput ( 'numFailures' ) )
1314 const accessToken = getInput ( 'access-token' )
@@ -31,7 +32,6 @@ async function run(): Promise<void> {
3132**${ results . failed } tests failed**
3233
3334${ testSummary }
34- }
3535`
3636 const response = await octokit . checks . create ( {
3737 head_sha : context . sha ,
You can’t perform that action at this time.
0 commit comments