Use early return pattern

This commit is contained in:
Sergey Dolin
2022-12-09 11:41:54 +01:00
parent d1b197b965
commit 676975d9aa
3 changed files with 22 additions and 33 deletions

View File

@ -105,19 +105,16 @@ export function isGhes(): boolean {
}
export function isCacheFeatureAvailable(): boolean {
if (!cache.isFeatureAvailable()) {
if (isGhes()) {
throw new Error(
'Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.'
);
} else {
core.warning(
'The runner was not able to contact the cache service. Caching will be skipped'
);
}
if (cache.isFeatureAvailable()) return true;
return false;
}
if (isGhes())
throw new Error(
'Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.'
);
return true;
core.warning(
'The runner was not able to contact the cache service. Caching will be skipped'
);
return false;
}