diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml index f638e8bf0e6c..03e2959be11f 100644 --- a/.github/workflows/desktop-e2e.yml +++ b/.github/workflows/desktop-e2e.yml @@ -129,7 +129,10 @@ jobs: e2e-test-linux: name: Linux end-to-end tests needs: [prepare-matrices, build-linux] - if: ${{ !cancelled() && (needs.prepare-matrices.outputs.linux_matrix != '[]' && needs.prepare-matrices.outputs.linux_matrix != '') }} + if: | + !cancelled() && + needs.prepare-matrices.outputs.linux_matrix != '[]' && + needs.prepare-matrices.outputs.linux_matrix != '' runs-on: [self-hosted, desktop-test, Linux] # app-test-linux timeout-minutes: 240 strategy: @@ -200,7 +203,10 @@ jobs: e2e-test-windows: needs: [prepare-matrices, build-windows] - if: ${{ !cancelled() && (needs.prepare-matrices.outputs.windows_matrix != '[]' && needs.prepare-matrices.outputs.windows_matrix != '') }} + if: | + !cancelled() && + needs.prepare-matrices.outputs.windows_matrix != '[]' && + needs.prepare-matrices.outputs.windows_matrix != '' name: Windows end-to-end tests runs-on: [self-hosted, desktop-test, Linux] # app-test-linux timeout-minutes: 240 @@ -268,7 +274,10 @@ jobs: e2e-test-macos: needs: [prepare-matrices, build-macos] - if: ${{ !cancelled() && (needs.prepare-matrices.outputs.macos_matrix != '[]' && needs.prepare-matrices.outputs.macos_matrix != '') }} + if: | + !cancelled() && + needs.prepare-matrices.outputs.macos_matrix != '[]' && + needs.prepare-matrices.outputs.macos_matrix != '' name: macOS end-to-end tests runs-on: [self-hosted, desktop-test, macOS] # app-test-macos-arm timeout-minutes: 240