diff --git a/.github/e2e-tests.yml b/.github/e2e-tests.yml new file mode 100644 index 0000000..045f5a2 --- /dev/null +++ b/.github/e2e-tests.yml @@ -0,0 +1,27 @@ +name: End-to-end + +on: + pull_request: + +jobs: + e2e_tests: + name: End-to-end tests run + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Use specific node version + uses: actions/setup-node@v3 + with: + node-version: '16.x' + cache: 'yarn' + + - name: Install dependencies + run: yarn install + shell: bash + + - name: Run end-to-end tests + run: yarn run test:e2e + + - name: Generate end-to-end tests report + run: yarn run test:generate:report \ No newline at end of file