Merge pull request #772 from ZuLu0890/fix/issue-681-bigint-projection… #39
This file contains hidden or 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: 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' |