Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 40 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,52 @@ on:

jobs:
build:
name: Build and Test
name: Build Web
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24
cache: 'npm'
- run: npm ci
- run: npm run build

build-android:
needs: ['build']
runs-on: 'macos-26'
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- name: Restore Dependency Cache
uses: actions/cache@v6
- uses: actions/setup-node@v7
with:
path: ~/.npm
key: ${{ runner.OS }}-dependency-cache-${{ hashFiles('**/package.json') }}
- run: npm install
node-version: 24
cache: 'npm'
- run: npm ci
- run: npm run build
- name: Sync native platforms
run: npx cap sync
- name: Build Android
working-directory: ./android
run: ./gradlew clean assembleDebug

build-ios:
needs: ['build']
runs-on: 'macos-15'
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24
cache: 'npm'
- name: Set Xcode 26.0
run: sudo xcode-select --switch /Applications/Xcode_26.0.app
- run: npm ci
- run: npm run build
- name: Sync native platforms
run: npx cap sync
- name: Build iOS
working-directory: ./ios/App
run: xcodebuild clean build -workspace App.xcworkspace -scheme App CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO