()
| 198 | } |
| 199 | |
| 200 | function validationStep() { |
| 201 | return STEPS.find((step) => { |
| 202 | const haystack = `${step.name}\n${step.run || ""}`; |
| 203 | return /review(?:[ _-]?task)?[ _-]?timeout/i.test(haystack); |
| 204 | }); |
| 205 | } |
| 206 | |
| 207 | function installStep() { |
| 208 | return STEPS.find((step) => /install\s+opencode|install\s+open.?code.?review/i.test(step.name)); |
no outgoing calls
no test coverage detected