Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 616 Bytes

run_e2e_github_actions.md

File metadata and controls

21 lines (18 loc) · 616 Bytes

Running E2E tests on pull requests

Install the GitHub CLI

Install the GitHub CLI from here.

Log in to GitHub CLI

gh auth login

Run the workflow manually

Run with deploying the server

Run this if you changed something in the code (backend, frontend, etc.)

gh workflow run e2e_tests_preview.yml --ref <your-branch-name> -f run_deploy=true

Run without deploying the server

Run this if you have not changed anything in the code (usually fixing tests, changing docs, etc.)

gh workflow run e2e_tests_preview.yml --ref <your-branch-name>