1
0
mirror of https://github.com/actions/cache.git synced 2025-10-23 08:56:26 +08:00

Initial commit

This commit is contained in:
Josh Gross
2019-10-30 14:48:49 -04:00
parent 551cf17d91
commit 37c45447e4
20 changed files with 6242 additions and 0 deletions

7
src/utils/testUtils.ts Normal file
View File

@@ -0,0 +1,7 @@
function getInputName(name: string): string {
return `INPUT_${name.replace(/ /g, "_").toUpperCase()}`;
}
export function setInput(name: string, value: string) {
process.env[getInputName(name)] = value;
}