Skip to content

Commit

Permalink
Fix yamllint
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusPettersson98 committed Jul 23, 2024
1 parent f2f5886 commit e77b2b6
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/desktop-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e77b2b6

Please sign in to comment.