Bump expo-camera from 14.0.6 to 14.1.3 #122
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
ios-build: | |
name: iOS Dev Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout repo from main | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Install npm dependency | |
run: yarn install | |
- name: Run build | |
run: npx expo export -p ios | |
android-build: | |
name: Android Dev Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout repo from main | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Install npm dependency | |
run: yarn install | |
- name: Run build | |
run: npx expo export -p android | |
web-build: | |
name: Web Dev Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout repo from main | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Install npm dependency | |
run: yarn install | |
- name: Run build | |
run: npx expo export -p web |