(actions: TT.StepActions)
| 23 | |
| 24 | // run when a level starts |
| 25 | export const onLevelEnter = async (actions: TT.StepActions): Promise<void> => { |
| 26 | await loadCommits(actions?.commits) |
| 27 | await runCommands(actions?.commands) |
| 28 | } |
| 29 | |
| 30 | // run when a step starts |
| 31 | export const onSetupEnter = async (actions: TT.StepActions): Promise<void> => { |
nothing calls this directly
no test coverage detected