Skip to content

Commit 286713c

Browse files
committed
ci: install expo_example dependencies
1 parent 260cdd9 commit 286713c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/actions/setup/action.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)