mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-15 23:41:45 +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 => {
|
const getSendNotifications = (): boolean => {
|
||||||
return isTrue(
|
return isTrue(
|
||||||
core.getInput('send-notifications'),
|
core.getInput('send-notifications'),
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -129,7 +129,7 @@ const run = async (): Promise<void> => {
|
||||||
if (getSendNotifications()) {
|
if (getSendNotifications()) {
|
||||||
await sendNotifications();
|
await sendNotifications();
|
||||||
// don't perform an upload after sending notifications
|
// don't perform an upload after sending notifications
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
await exec.exec(
|
await exec.exec(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue