Skip to content

Minor fix for consistency in boolean expressions handling

Current situation

The following if conditional causes an execution error: if: true && ${{ false }}. It should not (but it should evaluate to 'true', as a non-empty-string/non-zero-string is 'truish'.

Desired outcome

The aforementioned conditional should not cause an execution error (and should evaluates to true :) )