Skip to content

Revert ":fire: Remove unnecessary UI files" #10

Revert ":fire: Remove unnecessary UI files"

Revert ":fire: Remove unnecessary UI files" #10

Workflow file for this run

name: preview
on:
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
mobile:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repository
uses: actions/checkout@v3
- name: πŸ— Setup monorepo
uses: ./.github/actions/setup-monorepo
with:
expo-token: ${{ secrets.EXPO_TOKEN }}
- name: πŸ‘· Build packages
run: pnpm run -w build:mobile
# You can remove this step if you already configured this
# This project shouldn't be pre-configured with this ID, that's why its omitted
- name: πŸ‘· Configure project
working-directory: apps/mobile
run: |
eas init --id 7f86376f-9f10-43f4-8792-04a7c0d04265 --force --non-interactive
echo $(jq '.expo.runtimeVersion.policy = "sdkVersion"' app.json) > app.json
- name: πŸš€ Create preview
uses: expo/expo-github-action/preview@v8
with:
working-directory: apps/mobile
command: eas update --auto --branch=pr-${{ github.event.number }}