Skip to content

Commit

Permalink
chore(deps-dev): bump @ridedott/eslint-config from 0.4.67 to 0.4.72
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot-preview[bot] authored and merlinnot committed Dec 4, 2019
1 parent eec864f commit f2b4162
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 68 deletions.
132 changes: 69 additions & 63 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@ridedott/eslint-config": "^0.4.67",
"@ridedott/eslint-config": "^0.4.72",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/exec": "^3.3.8",
"@semantic-release/git": "^7.0.18",
Expand Down
2 changes: 1 addition & 1 deletion src/eventHandlers/checkSuite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const checkSuiteHandle = async (octokit: GitHub): Promise<void> => {
});

info(
`checkSuiteHandle: PullRequestId: ${pullRequestId}, commitHeadline: ${commitHeadline}.`,
`checkSuiteHandle: PullRequestId: ${pullRequestId as string}, commitHeadline: ${commitHeadline as string}.`,
);

if (
Expand Down
2 changes: 1 addition & 1 deletion src/eventHandlers/pullRequest/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const pullRequestHandle = async (octokit: GitHub): Promise<void> => {
} = context.payload.repository as PayloadRepository;

info(
`pullRequestHandle: PullRequestId: ${pullRequestId}, commitHeadline: ${commitHeadline}.`,
`pullRequestHandle: PullRequestId: ${pullRequestId as string}, commitHeadline: ${commitHeadline as string}.`,
);
const {
repository: {
Expand Down
2 changes: 1 addition & 1 deletion src/eventHandlers/push/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const pushHandle = async (octokit: GitHub): Promise<void> => {
});

info(
`pushHandle: PullRequestId: ${pullRequestId}, commitHeadline: ${commitHeadline}.`,
`pushHandle: PullRequestId: ${pullRequestId as string}, commitHeadline: ${commitHeadline}.`,
);

if (
Expand Down
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ const main = async (): Promise<void> => {
};

main().catch((error: Error): void => {
setFailed(`An unexpected error occurred: ${error}, ${error.stack}.`);
setFailed(
`An unexpected error occurred: ${error.message}, ${error.stack ??
'no stack trace'}.`,
);
});

0 comments on commit f2b4162

Please sign in to comment.