Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgn committed Sep 17, 2020
1 parent 725a2b9 commit c29cef1
Show file tree
Hide file tree
Showing 3 changed files with 731 additions and 569 deletions.
5 changes: 4 additions & 1 deletion lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ async function executeGitHubAction(context, eventName, eventData) {
await handleBranchUpdate(context, eventName, eventData);
} else if (eventName === "status") {
await handleStatusUpdate(context, eventName, eventData);
} else if (eventName === "pull_request" || eventName === "pull_request_target") {
} else if (
eventName === "pull_request" ||
eventName === "pull_request_target"
) {
await handlePullRequestUpdate(context, eventName, eventData);
} else if (["check_suite", "check_run"].includes(eventName)) {
await handleCheckUpdate(context, eventName, eventData);
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
"prepublish": "yarn lint && yarn test"
},
"dependencies": {
"@octokit/rest": "^18.0.3",
"argparse": "^1.0.7",
"@octokit/rest": "^18.0.6",
"argparse": "^2.0.1",
"fs-extra": "^9.0.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"eslint-plugin-jest": "^23.18.2",
"jest": "^26.1.0",
"prettier": "^2.0.5"
"eslint": "^7.9.0",
"eslint-plugin-jest": "^24.0.1",
"jest": "^26.4.2",
"prettier": "^2.1.2"
},
"prettier": {
"trailingComma": "none",
Expand Down
Loading

0 comments on commit c29cef1

Please sign in to comment.