Skip to content

E2E tests

E2E tests #4

Workflow file for this run

name: E2E tests
on: [ deployment_status ]
jobs:
run_e2e_tests:
name: Run E2E tests
# This statement makes sure that this job is only
# executed when the deployment to Vercel was
# successful
if: github.event.deployment_status.state == 'success'
runs-on: ubuntu-latest
# Thank you cypress for providing a container
# that works out-of-the-box
container: cypress/browsers:node11.13.0-chrome73
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run E2E tests
run: cypress --config baseUrl=${{ github.event.deployment_status.target_url }}