16 lines
273 B
YAML
16 lines
273 B
YAML
|
name: Automated end to end tests
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
# branches:
|
||
|
# - master
|
||
|
pull_request:
|
||
|
branches: master
|
||
|
|
||
|
jobs:
|
||
|
Jest:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Setup and run
|
||
|
run: cd test/automated && ./run.sh
|