-
Notifications
You must be signed in to change notification settings - Fork 353
72 lines (62 loc) · 2.16 KB
/
example-install-only.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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