We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba9812d commit ad6360aCopy full SHA for ad6360a
4 files changed
.github/workflows/tests.yml
@@ -18,7 +18,7 @@ jobs:
18
cache-name: cache-node-modules
19
with:
20
path: ~/.npm
21
- key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
+ key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
22
restore-keys: |
23
${{ runner.os }}-build-${{ env.cache-name }}-
24
${{ runner.os }}-build-
@@ -28,6 +28,6 @@ jobs:
28
29
node-version: ${{ matrix.node-version }}
30
- name: Install dependencies
31
- run: npm ci
+ run: yarn
32
- name: Run tests
33
- run: npm run cypress_ci
+ run: yarn cypress_ci
0 commit comments