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