File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,16 @@ runs:
1616 path : |
1717 **/node_modules
1818 .yarn/install-state.gz
19- key : ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
19+ key : ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock', 'expo_example/package-lock.json' ) }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
2020 restore-keys : |
21- ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
21+ ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock', 'expo_example/package-lock.json' ) }}
2222 ${{ runner.os }}-yarn-
2323
2424 - name : Install dependencies
2525 if : steps.yarn-cache.outputs.cache-hit != 'true'
26- run : yarn install --immutable
26+ run : |
27+ yarn install --immutable
28+ cd expo_example && npm ci
2729 shell : bash
2830
2931 - name : Cache dependencies
You can’t perform that action at this time.
0 commit comments