Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jassmith committed May 23, 2020
1 parent 2a1ebcb commit ad97769
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29701,7 +29701,6 @@ function createCheck(summary, conclusion, githubKit) {
if (conclusion === "failure") {
yield githubKit.issues.createComment(commentRequest);
}
console.log("Sending check request", JSON.stringify(checkRequest));
yield githubKit.checks.create(checkRequest);
}
catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-storyshots-reporter",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "Github actions for reporting jest storyshots results",
"main": "lib/main.js",
Expand Down
1 change: 0 additions & 1 deletion src/github-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ async function createCheck(summary: string, conclusion: Conclusion, githubKit: g
if (conclusion === "failure") {
await githubKit.issues.createComment(commentRequest);
}
console.log("Sending check request", JSON.stringify(checkRequest));
await githubKit.checks.create(checkRequest);
} catch (error) {
throw new Error(
Expand Down

0 comments on commit ad97769

Please sign in to comment.