fix(translations): sync translations from transifex (next) #130
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: 'dhis2: verify (commits)' | |
on: | |
pull_request: | |
types: ['opened', 'edited', 'reopened', 'synchronize'] | |
# The commitlint config for the jobs below should be fetched | |
# from cli-style as soon as that lib has been updated to 10.4.1+ | |
jobs: | |
lint-pr-title: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: c-hive/gha-yarn-cache@v1 | |
- run: yarn install --frozen-lockfile | |
- uses: JulienKode/[email protected] | |
lint-commits: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: c-hive/gha-yarn-cache@v1 | |
- run: yarn install --frozen-lockfile | |
- uses: wagoid/commitlint-github-action@v4 |