stateinputprovider with pending test cases fix

This commit is contained in:
Sankalp Kotewar
2023-01-02 07:29:20 +00:00
committed by GitHub
parent 365406cb70
commit 5b7eeecaeb
9 changed files with 53 additions and 28 deletions

View File

@@ -9,6 +9,10 @@ export function setInput(name: string, value: string): void {
process.env[getInputName(name)] = value;
}
export function getInput(name: string): string {
return process.env[getInputName(name)] as string;
}
interface CacheInput {
path: string;
key: string;