From 4a0ffefae7543098525e43bd629f463e4be61f87 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 21 Nov 2023 22:08:06 +0000 Subject: [PATCH] Update end-to-end-tests.yaml --- .github/workflows/end-to-end-tests.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/end-to-end-tests.yaml b/.github/workflows/end-to-end-tests.yaml index 62321c8c89..afee5efab2 100644 --- a/.github/workflows/end-to-end-tests.yaml +++ b/.github/workflows/end-to-end-tests.yaml @@ -41,8 +41,8 @@ jobs: fail-fast: false matrix: # Run 2 instances in Parallel - ci_node_total: [2] ci_node_index: [0, 1] + ci_node_total: [2] steps: - uses: browser-actions/setup-chrome@803ef6dfb4fdf22089c9563225d95e4a515820a0 # v1 - run: echo "BROWSER_PATH=$(which chrome)" >> $GITHUB_ENV @@ -93,8 +93,10 @@ jobs: run: yarn playwright install --with-deps - name: Run Playwright tests - working-directory: matrix-react-sdk - run: yarn playwright test --shard ${{ matrix.ci_node_index }}/${{ matrix.ci_node_total }} + uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1 + with: + run: yarn playwright test --shard ${{ matrix.ci_node_index }}/${{ matrix.ci_node_total }} + working-directory: matrix-react-sdk - name: Upload blob report to GitHub Actions Artifacts if: always()