Skip to content

Commit ff34d12

Browse files
committed
chore: fix attempt 6'
1 parent 45973fb commit ff34d12

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/actions/setup-deps/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
uses: actions/cache@v3
1515
with:
1616
path: |
17-
**/node_modules
17+
./node_modules
1818
.yarn/install-state.gz
1919
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
2020
restore-keys: |

.github/actions/setup-website-deps/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ runs:
1313
id: yarn-cache-website
1414
uses: actions/cache@v3
1515
with:
16-
path: ./website/node_modules
17-
key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}-website
16+
path: |
17+
./website/node_modules
18+
./website/yarn/install-state.gz
19+
key: website-${{ runner.os }}-yarn-${{ hashFiles('./website/yarn.lock') }}
1820

1921
- name: Install website deps
2022
if: steps.yarn-cache-website.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)