This repository was archived by the owner on Jun 26, 2025. It is now read-only.
Announce project closure #112
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: Tests | |
| on: push | |
| jobs: | |
| java_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v2 | |
| - name: Set up JDK 14 | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: zulu | |
| java-package: jdk | |
| java-version: 14 | |
| - name: "Install NodeJS" | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: "18" | |
| - name: "Install Node dependencies" | |
| run: npm install --force | |
| - name: Validate Gradle wrapper | |
| uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b | |
| - name: Test with Gradle | |
| run: cd android && ./gradlew :app:cleanTestDebugUnitTest :app:testDebugUnitTest |