feat: integrate BrandMark component and enhance HostPage layout and s… #4
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: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| target: [web, mobile] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Build shared | |
| run: bun run --cwd packages/shared build | |
| - name: Build web | |
| if: matrix.target == 'web' | |
| run: bun run --cwd apps/web build | |
| - name: Build mobile (Expo export) | |
| if: matrix.target == 'mobile' | |
| env: | |
| EXPO_NO_TELEMETRY: '1' | |
| run: bun run --cwd apps/mobile build |