15 lines
389 B
YAML
15 lines
389 B
YAML
|
name: Automated browser tests
|
||
|
on: [push, pull_request]
|
||
|
jobs:
|
||
|
browser:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- 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
|