I'm currently trying to use Remodel as part of my GitHub Workflow CI. The existing behaviour is unintended, where the pipeline continues on error even with continue-on-error: false. I believe that instead exit code 1 should occur, resulting in both the step and pipeline failing.
Current work-around: using grep for 'error' and set exit code = 1
I'm currently trying to use Remodel as part of my GitHub Workflow CI. The existing behaviour is unintended, where the pipeline continues on error even with
continue-on-error: false
. I believe that instead exit code 1 should occur, resulting in both the step and pipeline failing.Current work-around: using
grep
for 'error' and set exit code = 1