1
0
Fork 0

Function rename

pull/1028/head
Shubham Tiwari 2022-03-24 09:00:25 +05:30
parent 8fe3522c0b
commit d8025e51e1
1 changed files with 2 additions and 2 deletions

View File

@ -44,12 +44,12 @@ function checkKey(key: string): void {
}
/**
* isAvailable to check the presence of Artifact cache service
* isFeatureAvailable to check the presence of Artifact cache service
*
* @returns boolean return true if Artifact cache service is available, otherwise false
*/
export function isAvailable(): boolean {
export function isFeatureAvailable(): boolean {
if (process.env['ACTIONS_CACHE_URL']) {
return true
}