Fix prettier error

This commit is contained in:
Álvaro Mondéjar Rubio 2022-06-21 13:33:41 +02:00
parent 84dee78cdb
commit fe28a720e4
1 changed files with 1 additions and 1 deletions

View File

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