Better name for the overall config #6
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: WASM and JS Unit tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "jb-main" | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
pull-requests: write | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
name: Wasm Unit tests on Ubuntu | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node 18 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: install Android SDK | |
run: ./jbdeps/android-sdk/downloadAndroidSdk | |
- name: Run Wasm tests | |
run: ./gradlew :mpp:testWeb --info | |
- name: Generate report (Test Reporter) | |
uses: dorny/test-reporter@v1 | |
if: always() | |
with: | |
name: Wasm Unit tests results | |
path: out/androidx/compose/**/**/build/test-results/**/TEST*.xml | |
reporter: java-junit |