blob: 9b34ff25aeec14e2f00eed6522142f74dee891f8 [file]
import { Step } from './api';
export type Status = 'success' | 'failure' | 'running';
/*
* Gets the action given a step.
* TODO -- put this in the BE
*/
export const getActionStatus = (action: Step) => {
if (action.step_end_log === null) {
return 'running';
}
if (action?.step_end_log?.exception) {
return 'failure';
}
return 'success';
};