We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 027f516 commit 3d4936fCopy full SHA for 3d4936f
.github/workflows/main.yml
@@ -22,14 +22,15 @@ jobs:
22
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23
- uses: actions/checkout@v2
24
# Sets up node environment specified in .nvmrc
25
- - uses: cypress-io/github-action@v2
+ - uses: actions/setup-node@v2-beta
26
with:
27
node-version: '15.0.1'
28
- name: Cache multiple paths
29
uses: actions/cache@v2
30
31
path: |
32
node_modules
33
+ ~/.cache/Cypress
34
yarn-cache
35
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
36
- name: install npm dependencies
0 commit comments