Fail if configuration-cache is enabled without dependencies cache

Fixes #61
This commit is contained in:
Daz DeBoer
2021-08-07 15:33:18 -07:00
parent 01bfa29846
commit 88af98fab4
3 changed files with 14 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ export function tryDeleteFiles(filePaths: string[]): boolean {
return !failure
}
function isDependenciesCacheDisabled(): boolean {
export function isDependenciesCacheDisabled(): boolean {
return !core.getBooleanInput('dependencies-cache-enabled')
}