feat: update raygun4android dependency to 5.2.1 (#215) #623
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: Demo CI | |
| on: [ push, pull_request ] | |
| jobs: | |
| demo-android-build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: demo | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 17 | |
| distribution: adopt | |
| cache: gradle | |
| - name: Validate Gradle wrapper | |
| uses: gradle/actions/wrapper-validation@v5 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - name: Build SDK | |
| working-directory: sdk | |
| run: npm run build_pack_1 | |
| - name: Build Demo | |
| working-directory: sdk | |
| run: npm run build_demo_2 | |
| - name: Build application | |
| run: | | |
| cd android | |
| ./gradlew assembleDebug | |
| demo-ios-build: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| working-directory: demo | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - name: Build SDK | |
| working-directory: sdk | |
| run: npm run build_pack_1 | |
| - name: Build Demo | |
| working-directory: sdk | |
| run: npm run build_demo_2 | |
| - name: Pod Install | |
| working-directory: demo/ios | |
| run: pod install | |
| - name: Build application | |
| run: npx react-native build-ios |