We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45973fb commit ff34d12Copy full SHA for ff34d12
.github/actions/setup-deps/action.yml
@@ -14,7 +14,7 @@ runs:
14
uses: actions/cache@v3
15
with:
16
path: |
17
- **/node_modules
+ ./node_modules
18
.yarn/install-state.gz
19
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
20
restore-keys: |
.github/actions/setup-website-deps/action.yml
@@ -13,8 +13,10 @@ runs:
13
id: yarn-cache-website
- path: ./website/node_modules
- key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}-website
+ path: |
+ ./website/node_modules
+ ./website/yarn/install-state.gz
+ key: website-${{ runner.os }}-yarn-${{ hashFiles('./website/yarn.lock') }}
21
- name: Install website deps
22
if: steps.yarn-cache-website.outputs.cache-hit != 'true'
0 commit comments