Merge branch 'main' into feat/issue-152-matching-engine #34
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] | ||
| jobs: | ||
| build: | ||
| name: EAS Preview Build | ||
| runs-on: ubuntu-latest | ||
| defaults: | ||
| run: | ||
| working-directory: mobile | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: "20" | ||
| 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: ${{ secrets.EXPO_TOKEN != '' }} | ||