(name: string, content: string)
| 58 | } |
| 59 | |
| 60 | recordAction(name: string, content: string): void { |
| 61 | console.log(`${name}: ${content}`); |
| 62 | this.actions[name] = content; |
| 63 | } |
| 64 | |
| 65 | save(): void { |
| 66 | // conditionally create the deploy history folder |
no outgoing calls
no test coverage detected