- These are the commands included in the {workflow}
workflow in the {fullFilePath}
file:
+
+ These are the commands included in the {workflow}
workflow in the{' '}
+ {fullFilePath}
file:
+
+ {workflowData?.description && (
+
+ {workflowData.description}
+
+ )}
- {commands.length > 0 ? commands.map((cmd, index) => (
- -
-
- {cmd}
-
-
- )) : 'No commands found'}
+ {workflowData?.steps.length ? (
+ workflowData.steps.map((step, index) => (
+ -
+ {step.type === 'title' ? (
+ <>
+
+ {step.content.split('\n\n')[0]}
+
+
+ {step.content.split('\n\n')[1]}
+
+ >
+ ) : (
+ {step.content}
+ )}
+
+ ))
+ ) : (
+ 'No commands found'
+ )}
- Too many commands? Consider using the Atmos workflow! 🚀
+ Too many commands? Consider using the Atmos workflow! 🚀