You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
646 B
32 lines
646 B
name: Browser Tests |
|
|
|
on: |
|
push: |
|
paths: |
|
- web/** |
|
pull_request_target: |
|
paths: |
|
- web/** |
|
jobs: |
|
cypress-run: |
|
|
|
runs-on: ubuntu-latest |
|
steps: |
|
- id: skip_check |
|
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 |
|
uses: nick-fields/retry@v2 |
|
with: |
|
timeout_minutes: 10 |
|
max_attempts: 3 |
|
command: cd test/automated/browser && ./run.sh
|
|
|