1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2025-07-12 09:10:44 +00:00

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

View file

@ -0,0 +1,10 @@
import restoreImpl from "./restoreImpl";
import { NullStateProvider } from "./stateProvider";
async function run(): Promise<void> {
await restoreImpl(new NullStateProvider(), { lookupOnly: true });
}
run();
export default run;