guarantee getInputAsArray consistent across runs on separate machines

pull/1180/head
Aaron Bernard
parent 04f198bf0b
commit f97cfde4d5
No known key found for this signature in database
GPG Key ID: C0DC8A57B82618F3

@ -38,7 +38,8 @@ export function getInputAsArray(
.getInput(name, options)
.split("\n")
.map(s => s.replace(/^!\s+/, "!").trim())
.filter(x => x !== "");
.filter(x => x !== "")
.sort();
}
export function getInputAsInt(

Loading…
Cancel
Save