mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
Allow for retries of browser tests
This commit is contained in:
parent
9fd1e56d55
commit
9d540b30bc
1 changed files with 8 additions and 1 deletions
9
.github/workflows/browser-testing.yml
vendored
9
.github/workflows/browser-testing.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue