We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8816f2d commit a8b8a98Copy full SHA for a8b8a98
.github/workflows/build.yml
@@ -22,6 +22,7 @@ jobs:
22
node-version: '20.18.1'
23
24
- name: Cache Yarn
25
+ id: yarn-cache
26
uses: actions/cache@v3
27
with:
28
path: |
@@ -35,6 +36,7 @@ jobs:
35
36
run: npm install -g yarn && yarn config set ignore-engines true
37
38
- name: Cache node_modules
39
+ id: node-modules-cache
40
41
42
path: node_modules
@@ -43,7 +45,7 @@ jobs:
43
45
${{ runner.os }}-node-modules-
44
46
47
- name: Install dependencies
- if: steps.yarn-cache.outputs.cache-hit != 'true'
48
+ if: steps.node-modules-cache.outputs.cache-hit != 'true'
49
run: yarn install
50
51
- name: Run build script
0 commit comments