Skip to content

Commit 27014b7

Browse files
committed
ci: fix caching for yarn
1 parent 77aaacb commit 27014b7

File tree

2 files changed

+2
-2
lines changed
  • .github/actions/setup
  • packages/create-react-native-library/templates/common/$.github/actions/setup

2 files changed

+2
-2
lines changed

.github/actions/setup/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
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
1919
restore-keys: |
2020
${{ runner.os }}-yarn-

packages/create-react-native-library/templates/common/$.github/actions/setup/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
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
1919
restore-keys: |
2020
${{ runner.os }}-yarn-

0 commit comments

Comments
 (0)