Skip to content

fix(deps): update dependency @actions/cache to v3.2.2 #1843

fix(deps): update dependency @actions/cache to v3.2.2

fix(deps): update dependency @actions/cache to v3.2.2 #1843

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