Fixed issues given in the comments #49
Workflow file for this run
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 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 |