Add actions/cache/check action

This commit is contained in:
Marc Mueller 2023-01-30 20:12:01 +01:00
parent 537862ffdb
commit 9dd99b0404
9 changed files with 61502 additions and 11 deletions

11
src/options.ts Normal file
View file

@ -0,0 +1,11 @@
/**
* Options to control cache restore
*/
export interface RestoreOptions {
/**
* Weather to skip downloading the cache entry.
* If lookupOnly is set to true, the restore function will only check if
* a matching cache entry exists.
*/
lookupOnly?: boolean;
}