Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/wizard-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,15 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

# Expo react-native apps live outside the pnpm workspace, so the root
# install above never installs their dependencies — including the local
# Expo CLI the wizard shells out to. Install them in-app for just the
# Expo matrix jobs so the Expo environment is available on ubuntu.
- name: Install Expo app dependencies
if: contains(matrix.app, 'react-native/expo')
run: npm ci
working-directory: apps/${{ matrix.app }}

- name: Install GitHub CLI
run: |
if command -v gh > /dev/null 2>&1; then
Expand Down