fix: bump eslint parser deps (#1586)

This commit is contained in:
Tom Hu 2024-10-01 09:44:31 -05:00 committed by GitHub
parent 26c7e28d7e
commit 6f7612c64d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 798 additions and 4750 deletions

View file

@ -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 => {