Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit fcda0ee

Browse files
committed
Are we doing anything?
1 parent c25c759 commit fcda0ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5060,6 +5060,7 @@ function generateSummary(annotation) {
50605060
}
50615061
async 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,

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ function generateSummary(annotation: Annotation): string {
88

99
async 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,

0 commit comments

Comments
 (0)