Set the default version to 9999.0.0-SNAPSHOT, pin all dependencies #221
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: CfW tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "jb-main" | |
jobs: | |
cfw-tests: | |
runs-on: ubuntu-24.04 | |
name: CfW tests | |
steps: | |
- name: Print dependencies versions | |
run: | | |
google-chrome-stable --version | |
- uses: actions/checkout@v3 | |
- 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 CfW tests | |
run: xvfb-run -a ./gradlew :mpp:testWeb --no-parallel -Pandroidx.ignoreTestFailures |