Merge pull request #22 from kglw-dot-net/dependabot/npm_and_yarn/gats… #16
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
# https://docs.cypress.io/guides/continuous-integration/github-actions | |
name: Cypress integration tests | |
on: push | |
jobs: | |
cypress: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
build: npm run build | |
start: npm run serve -- -p 30000 | |
wait-on: 'http://localhost:30000' # quote the url to be safe against YML parsing surprises | |
config: pageLoadTimeout=100000,baseUrl=http://localhost:30000 |