(msg)
| 86 | routeCategories = "", |
| 87 | }) { |
| 88 | const log = (msg) => { |
| 89 | if (core && typeof core.info === "function") core.info(msg); |
| 90 | else console.log(msg); |
| 91 | }; |
| 92 | const out = (name, value) => { |
| 93 | if (core && typeof core.setOutput === "function") core.setOutput(name, value); |
| 94 | }; |
no outgoing calls
no test coverage detected