2021-09-17 23:04:09 +02:00
|
|
|
name: Automated browser tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
browser:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-04-10 13:54:39 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-04 22:52:54 +02:00
|
|
|
- uses: actions/setup-go@v3
|
2021-10-11 23:56:00 +02:00
|
|
|
with:
|
|
|
|
stable: 'false'
|
|
|
|
go-version: '1.17.2'
|
|
|
|
|
2021-09-17 23:04:09 +02:00
|
|
|
- name: Run browser tests
|
|
|
|
run: cd test/automated/browser && ./run.sh
|
|
|
|
|
2022-04-10 18:24:35 +02:00
|
|
|
- uses: actions/upload-artifact@v3
|
2021-09-17 23:04:09 +02:00
|
|
|
with:
|
|
|
|
name: screenshots-${{ github.run_id }}
|
|
|
|
path: test/automated/browser/screenshots/*.png
|