diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 1d9e810..f7b7881 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -10,6 +10,15 @@ jobs: uses: actions/checkout@v2 - name: Goto frontend and run tests run: cd frontend && npm i && npm test + + test-e2e: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + - name: Goto e2e and run tests + run: cd e2e && npm i && npx playwright test + docker: needs: test-front if: github.ref == 'refs/heads/develop'