()
| 4163 | } |
| 4164 | |
| 4165 | function scriptCore() { |
| 4166 | return { |
| 4167 | outputs: {}, |
| 4168 | warnings: [], |
| 4169 | infos: [], |
| 4170 | setOutput(name, value) { this.outputs[name] = value; }, |
| 4171 | info(message) { this.infos.push(message); }, |
| 4172 | warning(message) { this.warnings.push(message); }, |
| 4173 | }; |
| 4174 | } |
| 4175 | |
| 4176 | // The complete env the resolve step reads, so a test can vary one axis at a |
| 4177 | // time and know nothing else moved. GITHUB_WORKSPACE is a fresh empty dir: |
no outgoing calls
no test coverage detected