From 4762de46815bca1bc871f33000a101373130147a Mon Sep 17 00:00:00 2001 From: Yuichi Yogo Date: Wed, 21 Apr 2021 02:47:03 +0900 Subject: [PATCH] simplify path in lerna example --- examples.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples.md b/examples.md index 7d3f8ab..66198ba 100644 --- a/examples.md +++ b/examples.md @@ -215,9 +215,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') }} ```