mirror of
https://github.com/actions/cache.git
synced 2025-04-21 19:46:46 +00:00
Add unit tests for actionUtils (#93)
* Add unit tests for actionUtils * Fix file size on ubuntu and test name * Remove unused import
This commit is contained in:
parent
bb828da54c
commit
c0584c42d1
4 changed files with 233 additions and 2 deletions
|
@ -70,7 +70,11 @@ export function setOutputAndState(
|
|||
export function getCacheState(): ArtifactCacheEntry | undefined {
|
||||
const stateData = core.getState(State.CacheResult);
|
||||
core.debug(`State: ${stateData}`);
|
||||
return (stateData && JSON.parse(stateData)) as ArtifactCacheEntry;
|
||||
if (stateData) {
|
||||
return JSON.parse(stateData) as ArtifactCacheEntry;
|
||||
}
|
||||
|
||||
return undefined;
|
||||
}
|
||||
|
||||
export function resolvePath(filePath: string): string {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue