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