diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index d4238e519..40f66ddfb 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -53,7 +53,7 @@ jobs: run: yarn tronb:vite:dev - name: Run playwright/electron flow on ubuntu (with retries) - if: startsWith(matrix.os, 'ubuntu') + if: contains(matrix.os, 'ubuntu') run: | xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn test:playwright:electron:ubuntu --retries 10 env: @@ -65,7 +65,7 @@ jobs: token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }} - name: Run playwright/electron flow on windows (with retries) - if: startsWith(matrix.os, 'windows') + if: contains(matrix.os, 'windows') id: retry run: | yarn test:playwright:electron:windows --retries 10 @@ -78,7 +78,7 @@ jobs: token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }} - name: Run playwright/electron flow on macos (with retries) - if: startsWith(matrix.os, 'macos') + if: contains(matrix.os, 'macos') run: | yarn test:playwright:electron:macos --retries 10 env: