Skip to content

Fixed issues given in the comments #49

Fixed issues given in the comments

Fixed issues given in the comments #49

Workflow file for this run

name: Build Check
on: [push, pull_request]
jobs:
android:
name: Android Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Install dependencies
run: npm ci
- name: Build Android debug
run: |
cd android
./gradlew assembleDebug --no-daemon
# ios:
# name: iOS Build
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 24
# cache: 'npm'
# - name: Install dependencies
# run: npm ci
# - name: Install CocoaPods
# run: cd ios && pod install
# - name: Build iOS
# run: |
# xcodebuild \
# -workspace ios/Fluent.xcworkspace \
# -scheme Fluent \
# -configuration Debug \
# -sdk iphonesimulator \
# CODE_SIGNING_ALLOWED=NO \
# build