test: protect yarn pnp example against cypress script redefinition (#… #1837
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-install-only | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
# ~~~~~~~~~~~~~~~~~~ Cypress v9 and below (using Legacy configuration) ~~~~~~~~~~~~~~~~~~~ # | |
# do not install every dependency in this example | |
# just install Cypress, but make sure to cache it | |
install-cypress-only-v9: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v3 | |
# cache npm modules and Cypress binary folder | |
# we can use "package-lock.json" as the key file | |
# to make sure we use the precise Cypress version | |
# (which is important when using ^ version in package.json) | |
# see https://github.com/actions/cache | |
- name: Cache npm and Cypress 📦 | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/Cypress | |
node_modules | |
key: my-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
- name: Install Cypress 📥 | |
run: npm i [email protected] | |
- name: Cypress tests 🧪 | |
uses: ./ | |
with: | |
working-directory: examples/v9/install-only | |
install: false | |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cypress v10 and higher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # | |
# do not install every dependency in this example | |
# just install Cypress, but make sure to cache it | |
install-cypress-only: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v3 | |
# cache npm modules and Cypress binary folder | |
# we can use "package-lock.json" as the key file | |
# to make sure we use the precise Cypress version | |
# (which is important when using ^ version in package.json) | |
# see https://github.com/actions/cache | |
- name: Cache npm and Cypress 📦 | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/Cypress | |
node_modules | |
key: my-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
- name: Install Cypress 📥 | |
run: npm i [email protected] | |
- name: Cypress tests 🧪 | |
uses: ./ | |
with: | |
working-directory: examples/install-only | |
install: false |