attempt to fix github action cypress binary err #31
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: Chrome Tests | |
on: | |
push: | |
workflow_call: | |
jobs: | |
cypress-ct: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: 8 | |
run_install: false | |
- name: Install deps | |
run: pnpm i | |
- name: Install Cypress binaries | |
run: npx cypress install | |
- name: Chrome tests | |
run: pnpm test:chrome |