changed where to look for cypress tests #5
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: e2e-tests | |
on: [push] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install `serve` | |
run: npm install -g serve | |
- name: Start `serve` to host the app | |
run: serve -s build -l 8900 & | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
start: npm start |