test: protect yarn pnp example against cypress script redefinition (#… #1176
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: example-basic-pnpm | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
# ~~~~~~~~~~~~~~~~~~ Cypress v9 and below (using Legacy configuration) ~~~~~~~~~~~~~~~~~~~ # | |
basic-pnpm-ubuntu-20-v9: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Cypress tests | |
# normally you would write | |
# uses: cypress-io/github-action@v5 | |
uses: ./ | |
# the parameters below are only necessary | |
# because we are running these examples in a monorepo | |
with: | |
working-directory: examples/v9/basic-pnpm | |
# just for full picture after installing Cypress | |
# print information about detected browsers, etc | |
# see https://on.cypress.io/command-line#cypress-info | |
build: npx cypress info | |
basic-pnpm-ubuntu-22-v9: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/v9/basic-pnpm | |
build: npx cypress info | |
basic-pnpm-on-windows-v9: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/v9/basic-pnpm | |
build: npx cypress info | |
basic-pnpm-on-mac-v9: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/v9/basic-pnpm | |
build: npx cypress info | |
# skips the binary installation | |
# shows that the job should not fail | |
# https://github.com/cypress-io/github-action/issues/327 | |
basic-pnpm-without-binary-install-v9: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/v9/basic-pnpm | |
# since we do not install Cypress | |
# we should not attempt to run tests | |
runTests: false | |
env: | |
# skip the binary install | |
CYPRESS_INSTALL_BINARY: 0 | |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cypress v10 and higher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # | |
basic-pnpm-ubuntu-20: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Cypress tests | |
# normally you would write | |
# uses: cypress-io/github-action@v5 | |
uses: ./ | |
# the parameters below are only necessary | |
# because we are running these examples in a monorepo | |
with: | |
working-directory: examples/basic-pnpm | |
# just for full picture after installing Cypress | |
# print information about detected browsers, etc | |
# see https://on.cypress.io/command-line#cypress-info | |
build: npx cypress info | |
basic-pnpm-ubuntu-22: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/basic-pnpm | |
build: npx cypress info | |
basic-pnpm-on-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/basic-pnpm | |
build: npx cypress info | |
basic-pnpm-on-mac: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/basic-pnpm | |
build: npx cypress info | |
# skips the binary installation | |
# shows that the job should not fail | |
# https://github.com/cypress-io/github-action/issues/327 | |
basic-pnpm-without-binary-install: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/basic-pnpm | |
# since we do not install Cypress | |
# we should not attempt to run tests | |
runTests: false | |
env: | |
# skip the binary install | |
CYPRESS_INSTALL_BINARY: 0 |