rename to shouldPruneCache

This commit is contained in:
merlinz01 2024-10-24 17:18:10 -04:00
parent d86d62a1a3
commit edddf6c875

View file

@ -5,7 +5,7 @@ import {
STATE_CACHE_MATCHED_KEY,
STATE_CACHE_KEY,
} from "./cache/restore-cache";
import { cacheLocalPath, enableCache, pruneCache as pruneCacheOption } from "./utils/inputs";
import { cacheLocalPath, enableCache, pruneCache as shouldPruneCache } from "./utils/inputs";
export async function run(): Promise<void> {
try {
@ -32,7 +32,7 @@ async function saveCache(): Promise<void> {
return;
}
if (pruneCacheOption) {
if (shouldPruneCache) {
await pruneCache();
}