Skip to content

fix(deps): update dependency com.android.tools.build:gradle to v9 #1544

fix(deps): update dependency com.android.tools.build:gradle to v9

fix(deps): update dependency com.android.tools.build:gradle to v9 #1544

Workflow file for this run

name: Scan PR
permissions:
contents: read
actions: write
pull-requests: read
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- develop
concurrency:
group: pr-check-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-lib:
name: Build Nodes
uses: ./.github/workflows/build_lib.yml
with:
node-version: ${{ vars.NODE_VERSION }}
test-iOS:
name: Test iOS
needs: [build-lib]
uses: ./.github/workflows/ios_tests.yml
with:
node-version: ${{ vars.NODE_VERSION }}
device-version: ${{ vars.IOS_DEVICE_VERSION }}
test-Android:
name: Test Android
needs: [build-lib]
uses: ./.github/workflows/android_tests.yml
with:
node-version: ${{ vars.NODE_VERSION }}
android-version: ${{ vars.ANDROID_VERSION }}
run-sonar:
name: Collect Sonar reports
needs: [test-iOS, test-Android]
uses: ./.github/workflows/run_sonar.yml
secrets: inherit
with:
node-version: ${{ vars.NODE_VERSION }}