Translations update from Weblate #172
Workflow file for this run
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: Auto apply Prettier | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| jobs: | |
| autolintfix: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install yarn dependencies | |
| run: cd app && yarn install --frozen-lockfile | |
| - name: Apply prettier and eslint fix | |
| run: cd app && yarn lintfix | |
| - name: Run type checking | |
| run: cd app && yarn type-check | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: ":art: Format code with Prettier and ESLint" |