mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-05 14:09:25 +00:00
fix: bump eslint parser deps (#1586)
This commit is contained in:
parent
26c7e28d7e
commit
6f7612c64d
6 changed files with 798 additions and 4750 deletions
|
|
@ -12,10 +12,15 @@ const PLATFORMS = [
|
|||
type Platform = typeof PLATFORMS[number];
|
||||
|
||||
const setFailure = (message: string, failCi: boolean): void => {
|
||||
failCi ? core.setFailed(message) : core.warning(message);
|
||||
if (failCi) {
|
||||
process.exit();
|
||||
}
|
||||
if (failCi) {
|
||||
core.setFailed(message);
|
||||
} else {
|
||||
core.warning(message);
|
||||
}
|
||||
|
||||
if (failCi) {
|
||||
process.exit();
|
||||
}
|
||||
};
|
||||
|
||||
const getUploaderName = (platform: string): string => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue