Skip to content

feat: integrate BrandMark component and enhance HostPage layout and s… #4

feat: integrate BrandMark component and enhance HostPage layout and s…

feat: integrate BrandMark component and enhance HostPage layout and s… #4

Workflow file for this run

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