refactor(atlas-ui): upgrade to Expo SDK 54 #354
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: review | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [opened, synchronize] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🏗 Setup repo | |
| uses: actions/checkout@v4 | |
| - name: 🏗 Setup project | |
| uses: ./.github/actions/setup-project | |
| - name: 🚨 Lint project | |
| run: bun run lint | |
| - name: 📋 Typecheck project | |
| run: bun run typecheck | |
| - name: 🧪 Test project | |
| run: bun run test | |
| ui: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🏗 Setup repo | |
| uses: actions/checkout@v4 | |
| - name: 🏗 Setup project | |
| uses: ./.github/actions/setup-project | |
| - name: 👷 Build expo-atlas-ui | |
| run: bun run build | |
| working-directory: packages/expo-atlas-ui |