forked from cypress-io/github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 1004 Bytes
/
example-install-command.yml
File metadata and controls
37 lines (31 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: example-install-command
on:
push:
branches:
- 'master'
pull_request:
jobs:
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cypress v9 and lower ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
install-command:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- 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-v10:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Custom Yarn command
uses: ./
with:
working-directory: examples/v10/install-command
# https://classic.yarnpkg.com/en/docs/cli/install
install-command: yarn --frozen-lockfile --silent