ci: fix Android report path #9
Workflow file for this run
This file contains 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: Unit Tests and Code Quality | |
on: push | |
jobs: | |
run-unit-tests: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
- name: Install modules | |
run: yarn install --immutable | |
- name: Run tests and generate lcov report | |
run: yarn test:unit:coverage:lcov -- --maxWorkers=1 | |
- uses: actions/upload-artifact@master | |
with: | |
name: coverage-file | |
path: coverage | |
run-unit-tests-android: | |
name: Run Android unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
- name: Install modules | |
run: yarn install --immutable | |
- uses: ruby/setup-ruby@6bd3d993c602f6b675728ebaecb2b569ff86e99b # v1.174.0 | |
with: | |
ruby-version: "2.7" | |
bundler-cache: true | |
- name: Run Android unit tests and generate coverage | |
run: bundle exec fastlane android run_unit_tests_coverage | |
- uses: actions/upload-artifact@master | |
with: | |
name: coverage-file-android | |
path: packages/sdk/android/build/reports/kover | |
sonarcloud: | |
needs: | |
- run-unit-tests | |
- run-unit-tests-android | |
name: Run Code checks using Sonar | |
runs-on: macos-13-large | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- uses: actions/download-artifact@master | |
with: | |
name: coverage-file | |
path: coverage | |
- uses: actions/download-artifact@master | |
with: | |
name: coverage-file-android | |
path: kover | |
- name: SonarCloud Scan | |
uses: ./.github/actions/sonar | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
sonar-token: ${{ secrets.SONAR_TOKEN }} | |
sonar-host: https://sonarcloud.io. | |
pull-request-number: ${{ github.event.pull_request.number }} | |
branch: ${{ github.head_ref }} | |
base-branch: ${{ github.base_ref }} | |
pull-request-sha: ${{ github.event.pull_request.head.sha }} | |
coverage-file-name: ./coverage/lcov.info | |
coverage-file-name-android: ./kover/reportsRelease.xml |