Skip to content

Merge pull request #772 from ZuLu0890/fix/issue-681-bigint-projection… #39

Merge pull request #772 from ZuLu0890/fix/issue-681-bigint-projection…

Merge pull request #772 from ZuLu0890/fix/issue-681-bigint-projection… #39

Workflow file for this run

name: Mobile Preview Build
on:
push:
branches: [main, develop]
jobs:
ci-pass:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- run: exit 0
build:
if: github.event_name != 'push'
name: EAS Preview Build
runs-on: ubuntu-latest
env:
EXPO_TOKEN_SET: ${{ secrets.EXPO_TOKEN != '' }}
defaults:
run:
working-directory: mobile
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: mobile/package-lock.json
- run: npm ci
- uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- run: eas build --platform all --profile preview --non-interactive
if: env.EXPO_TOKEN_SET == 'true'