i18n: translate the onboarding analytics page into the 17 core locales #404
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: Build and Test | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| cache-enabled: true | |
| cache-read-only: ${{ github.event_name == 'pull_request' }} | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Run Gradle Build | |
| run: ./gradlew :app:assembleOpensourceDebug :tv:assembleDebug | |
| - name: Upload debug APKs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: debug-apks | |
| path: | | |
| app/build/outputs/apk/opensource/debug/*.apk | |
| tv/build/outputs/apk/debug/*.apk | |
| retention-days: 14 |