1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2024-09-19 09:26:43 +00:00

Merge pull request #567 from yuichkun/fix-typo-in-lerna-example

Fix typo of cache path in Lerna example
This commit is contained in:
Vipul 2022-02-23 11:24:07 +05:30 committed by GitHub
commit ab4bea262c
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -275,9 +275,7 @@ If using `npm config` to retrieve the cache directory, ensure you run [actions/s
- name: restore lerna
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
path: **/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
```