"+n buried" becomes plurals
#23158
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: Code Quality Checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
# Ignore merge queue branches on push; avoids merge_group+push concurrency race since ref is same | |
branches-ignore: | |
- 'gh-readonly-queue/**' | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lintKotlin: | |
name: Lint Kotlin | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Configure JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "21" | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
timeout-minutes: 5 | |
with: | |
# Only write to the cache for builds on the 'main' branches, stops branches evicting main cache | |
# Builds on other branches will only read from main branch cache writes | |
# Comment this and the with: above out for performance testing on a branch | |
cache-read-only: ${{ github.ref != 'refs/heads/main' }} | |
- name: Warm Gradle Cache | |
# This makes sure we fetch gradle network resources with a retry | |
uses: nick-invision/retry@v3 | |
with: | |
timeout_minutes: 10 | |
retry_wait_seconds: 60 | |
max_attempts: 3 | |
command: ./gradlew :AnkiDroid:compilePlayDebugJavaWithJavac compileLint lint-rules:compileTestJava --daemon | |
- name: Run Lint Debug | |
# "lint" is run under the 'Amazon' flavor, so slow in CI | |
# "lintPlayRelease" doesn't test androidTest | |
# "lintPlayDebug" doesn't test the API | |
# "lintVitalFullRelease": if `main` resources are only used in `androidTest` (#15741) | |
run: ./gradlew lintPlayDebug :api:lintDebug ktLintCheck lintVitalFullRelease lint-rules:test --daemon | |
lintJavascript: | |
name: Lint Javascript | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
# Handled under the pre-commit hook: ./gradlew installGitHook | |
# To run manually, run the following inside folder: Anki-Android | |
# npm install --location=global prettier | |
# prettier --check AnkiDroid/**/*.js | |
- name: Prettify AnkiDroid javascript code | |
uses: creyD/prettier_action@v4.3 | |
with: | |
prettier_options: --check AnkiDroid/**/*.js | |
dry: True | |
- name: Install Localization | |
run: cd tools/localization && yarn | |
- name: Lint Localization | |
run: cd tools/localization && yarn lint | |
- name: Format Localization | |
run: cd tools/localization && yarn checkformat |