forked from cypress-io/github-action
-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (34 loc) · 1.06 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
name: example-install-only
on:
push:
branches:
- 'master'
pull_request:
workflow_dispatch:
jobs:
# do not install every dependency in this example
# just install Cypress, but make sure to cache it
install-cypress-only:
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
# 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@v4
with:
path: |
~/.cache/Cypress
node_modules
key: my-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install Cypress 📥
run: npm install [email protected] --save-dev
- name: Cypress tests 🧪
uses: ./
with:
working-directory: examples/install-only
install: false