cache/src/utils/testUtils.ts

8 lines
213 B
TypeScript
Raw Normal View History

2019-10-31 01:48:49 +07:00
function getInputName(name: string): string {
return `INPUT_${name.replace(/ /g, "_").toUpperCase()}`;
}
export function setInput(name: string, value: string) {
process.env[getInputName(name)] = value;
}