Update android.yml #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Expo Android Build Test | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: yarn install | |
- name: Install Expo CLI | |
run: yarn global add expo-cli | |
- name: Install expect | |
run: sudo apt-get install -y expect | |
- name: Install Expo dependencies | |
run: npx expo install --check | |
- name: Run Expo Doctor | |
run: npx expo-doctor | |
continue-on-error: true | |
- name: Build Android | |
run: npx expo run:android |