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

It is not recommended to cache node_modules (#537)

According to the docs of this repo, so the example should not show it
This commit is contained in:
Robert Stoll 2021-02-17 19:18:00 +01:00 committed by GitHub
parent 26968a09c0
commit 4134e6de47
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,6 @@ See ["Caching dependencies to speed up workflows"](https://help.github.com/githu
path: |
~/cache
!~/cache/exclude
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
```