You can use the following property paths to find out the status of your sequence:
RunState.ErrorReported
RunState.SequenceFailed
With this you can know the status of your sequence, "passed", "failed" or "error", and you can assume the status isn't "terminated" since you are still executing.
I hope this helps