add comment for purpose of new form #759
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: End-to-End Tests | |
on: | |
push: | |
paths: | |
- 'backend/**' | |
- 'frontend/**' | |
- 'cypress/**' | |
- '.github/workflows/end-to-end-tests.yml' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
cd frontend | |
npm ci | |
cd ../backend | |
npm ci | |
- name: Run Cypress | |
uses: cypress-io/github-action@v6 | |
with: | |
start: npm run cypress:start | |
wait-on: "http://localhost:3000, http://localhost:3001" | |
wait-on-timeout: 60 |