diff --git a/.github/workflows/browser-testing.yml b/.github/workflows/browser-testing.yml index 596e49ba0..9d91c0ed4 100644 --- a/.github/workflows/browser-testing.yml +++ b/.github/workflows/browser-testing.yml @@ -16,10 +16,17 @@ jobs: uses: fkirc/skip-duplicate-actions@v5 with: concurrent_skipping: 'same_content_newer' + - name: Checkout uses: actions/checkout@v3 + - uses: actions/setup-go@v3 with: go-version: '1.18.8' + - name: Run Browser tests - run: cd test/automated/browser && ./run.sh + uses: nick-fields/retry@v2 + with: + timeout_minutes: 10 + max_attempts: 3 + command: cd test/automated/browser && ./run.sh