diff --git a/.github/ci-cd-scripts/playwright-electron.sh b/.github/ci-cd-scripts/playwright-electron.sh index 6594cf76c..90cde0063 100755 --- a/.github/ci-cd-scripts/playwright-electron.sh +++ b/.github/ci-cd-scripts/playwright-electron.sh @@ -32,7 +32,7 @@ while [[ $retry -le $max_retrys ]]; do echo "run playwright with last failed tests and retry $retry" if [[ "$3" == ubuntu-latest* ]]; then xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn test:playwright:electron:ubuntu -- --last-failed || true - elif [[ "$3" == windows-latest* ]]; then + elif [[ "$3" == windows* ]]; then yarn test:playwright:electron:windows -- --last-failed || true elif [[ "$3" == macos-14* ]]; then yarn test:playwright:electron:macos -- --last-failed || true diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index eab88b6e7..c00b1e964 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -5,9 +5,9 @@ on: pull_request: branches: [ main ] -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true +# concurrency: +# group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} +# cancel-in-progress: true permissions: contents: write