mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
fix lints
This commit is contained in:
parent
5a6c6a10d1
commit
84c5efc0b4
2 changed files with 2 additions and 2 deletions
|
|
@ -66,7 +66,7 @@ const getToken = async (): Promise<string> => {
|
|||
|
||||
const getSendNotifications = (): boolean => {
|
||||
return isTrue(
|
||||
core.getInput('send-notifications'),
|
||||
core.getInput('send-notifications'),
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ const run = async (): Promise<void> => {
|
|||
if (getSendNotifications()) {
|
||||
await sendNotifications();
|
||||
// don't perform an upload after sending notifications
|
||||
return
|
||||
return;
|
||||
}
|
||||
|
||||
await exec.exec(
|
||||
|
|
|
|||
Loading…
Reference in a new issue