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.
19 lines
495 B
19 lines
495 B
name: Automated browser tests |
|
on: [push, pull_request] |
|
jobs: |
|
browser: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v2 |
|
- uses: actions/setup-go@v2 |
|
with: |
|
stable: 'false' |
|
go-version: '1.17.2' |
|
|
|
- name: Run browser tests |
|
run: cd test/automated/browser && ./run.sh |
|
|
|
- uses: actions/upload-artifact@v2 |
|
with: |
|
name: screenshots-${{ github.run_id }} |
|
path: test/automated/browser/screenshots/*.png
|
|
|