1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2025-07-10 21:00:46 +00:00
cache/src/checkOnly.ts
2023-01-30 20:12:01 +01:00

10 lines
234 B
TypeScript

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