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

Commit

Permalink
Are we doing anything?
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpach committed Apr 9, 2020
1 parent c25c759 commit fcda0ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand All @@ -5076,7 +5077,6 @@ async function run() {
**${results.failed} tests failed**

${testSummary}
}
`;
const response = await octokit.checks.create({
head_sha: github_1.context.sha,
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ function generateSummary(annotation: Annotation): string {

async function run(): Promise<void> {
try {
debug("application started")
const path = getInput('path')
const numFailures = parseInt(getInput('numFailures'))
const accessToken = getInput('access-token')
Expand All @@ -31,7 +32,6 @@ async function run(): Promise<void> {
**${results.failed} tests failed**
${testSummary}
}
`
const response = await octokit.checks.create({
head_sha: context.sha,
Expand Down

0 comments on commit fcda0ee

Please sign in to comment.