File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 7575 "tsd-jsdoc" : " 2.5.0"
7676 },
7777 "engines" : {
78- "node" : " >=12 "
78+ "node" : " >=16 "
7979 },
8080 "release" : {
8181 "branches" : [
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ governing permissions and limitations under the License.
1818 * @returns {PipelineExecutionStepState } the step state or a falsy object if all steps are finished
1919 */
2020function getCurrentStep ( execution ) {
21- return ( execution && execution . _embedded && execution . _embedded . stepStates && execution . _embedded . stepStates . filter ( ss => ss . status !== 'FINISHED' ) [ 0 ] ) || undefined
21+ return ( execution && execution . _embedded && execution . _embedded . stepStates && execution . _embedded . stepStates . filter ( ss => ss . status !== 'FINISHED' && ss . status !== 'INCOMPLETE' ) [ 0 ] ) || undefined
2222}
2323
2424/**
You can’t perform that action at this time.
0 commit comments