docs: correct typo in PR #975 #1822
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: example-install-command | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
# ~~~~~~~~~~~~~~~~~~ Cypress v9 and below (using Legacy configuration) ~~~~~~~~~~~~~~~~~~~ # | |
install-command-v9: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Custom Yarn command | |
uses: ./ | |
with: | |
working-directory: examples/v9/install-command | |
# https://classic.yarnpkg.com/en/docs/cli/install | |
install-command: yarn --frozen-lockfile --silent | |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cypress v10 and higher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # | |
install-command: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Custom Yarn command | |
uses: ./ | |
with: | |
working-directory: examples/install-command | |
# https://classic.yarnpkg.com/en/docs/cli/install | |
install-command: yarn --frozen-lockfile --silent |