setCommandEcho function
Enables or disables the echoing of commands into stdout for the rest of the step.
Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set.
Implementation
void setCommandEcho({required bool enabled}) {
issue('echo', enabled ? 'on' : 'off');
}