This repository was archived by the owner on Nov 27, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -28,11 +28,13 @@ jobs:
28
28
uses : actions/cache@master
29
29
with :
30
30
path : ' **/node_modules'
31
- key : ${{ runner.os }}-yarn-v1- ${{ hashFiles('**/yarn.lock') }}
31
+ key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
32
32
33
33
- name : Install dependencies
34
34
if : steps.yarn-cache.outputs.cache-hit != 'true'
35
- run : yarn install --frozen-lockfile
35
+ run : |
36
+ yarn install --cwd example --frozen-lockfile
37
+ yarn install --frozen-lockfile
36
38
37
39
- name : Publish Expo app
38
40
working-directory : ./example
Original file line number Diff line number Diff line change @@ -30,11 +30,13 @@ jobs:
30
30
uses : actions/cache@master
31
31
with :
32
32
path : ' **/node_modules'
33
- key : ${{ runner.os }}-yarn-v1- ${{ hashFiles('**/yarn.lock') }}
33
+ key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
34
34
35
35
- name : Install dependencies
36
36
if : steps.yarn-cache.outputs.cache-hit != 'true'
37
- run : yarn install --frozen-lockfile
37
+ run : |
38
+ yarn install --cwd example --frozen-lockfile
39
+ yarn install --frozen-lockfile
38
40
39
41
- name : Publish Expo app
40
42
working-directory : ./example
You can’t perform that action at this time.
0 commit comments