We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df2c876 commit 56e04ceCopy full SHA for 56e04ce
1 file changed
.github/workflows/checks.yml
@@ -148,8 +148,10 @@ jobs:
148
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
149
id: dependency-cache
150
with:
151
- path: "**/node_modules"
152
- key: ${{ runner.os }}-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/yarn.lock') }}
+ path: |
+ node_modules
153
+ packages/*/node_modules
154
+ key: ${{ runner.os }}-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/yarn.lock') }}
155
- name: Install dependencies
156
run: yarn --frozen-lockfile --ignore-engines
157
if: steps.dependency-cache.outputs.cache-hit != 'true'
0 commit comments