add workflow to run e2e tests when pushing

This commit is contained in:
Felipe Knorr Kuhn
2021-07-15 10:23:19 -07:00
parent e991f55357
commit 7c1a839aa8

17
.github/workflows/push.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Cypress Tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cypress run
uses: cypress-io/github-action@v2
with:
working-directory: frontend
command: npm run e2e:ci