How to run multiple steps inside a thread?
One answer
The best way tot run a few sequential steps, but in parallel with other steps, is to setup the threaded steps in a main project, but then call an inline from those threaded steps with the sequential steps defined.
--> Thread Step 1 -> inline sequential steps
--> Thread Step 2 -> inline sequential steps
<-| Thread Step 3 -> example command
~Spencer