Allow for retries of browser tests

This commit is contained in:
Gabe Kangas 2022-12-10 18:33:50 -08:00 committed by GitHub
parent 9fd1e56d55
commit 9d540b30bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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