diff --git a/.github/workflows/chrome-tests.yml b/.github/workflows/chrome-tests.yml index c65b035..497d51f 100644 --- a/.github/workflows/chrome-tests.yml +++ b/.github/workflows/chrome-tests.yml @@ -14,9 +14,10 @@ jobs: node-version: '18' - uses: pnpm/action-setup@v2 name: Install pnpm - id: pnpm-install with: version: 8 run_install: true + - name: Install Cypress binaries + run: npx cypress install - name: Chrome tests run: pnpm test:chrome diff --git a/.github/workflows/firefox-tests.yml b/.github/workflows/firefox-tests.yml index 3c3fe95..d5399a6 100644 --- a/.github/workflows/firefox-tests.yml +++ b/.github/workflows/firefox-tests.yml @@ -14,9 +14,10 @@ jobs: node-version: '18' - uses: pnpm/action-setup@v2 name: Install pnpm - id: pnpm-install with: version: 8 run_install: true + - name: Install Cypress binaries + run: npx cypress install - name: Firefox tests run: pnpm test:firefox