Bump @types/node from 20.8.7 to 20.8.8 #234
Workflow file for this run
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: Cypress E2E | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
cypress-E2E: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # If you're using actions/checkout@v3 you must set persist-credentials to false in most cases for the deployment to work correctly. | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: 8 | |
run_install: true | |
- uses: cypress-io/github-action@v5 | |
with: | |
start: pnpm run start | |
wait-on: 'http://localhost:3000' | |
# the entire command will automatically be prefixed with "npm" | |
# and we need the second "npm" to execute "cypress run ..." command line | |
command-prefix: 'percy exec -- npx' | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} |