Dev #19
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: CI | |
on: | |
pull_request: | |
branches: [stable] | |
types: [opened, synchronize] | |
paths-ignore: | |
- '*.md' | |
- '.*ignore' | |
push: | |
branches: [stable] | |
paths-ignore: | |
- '*.md' | |
- '.*ignore' | |
workflow_dispatch: | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
lint_pretty_and_cache_deps: | |
runs-on: ubuntu-22.04 | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
node-version: 20 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint | |
continue-on-error: true | |
run: pnpm run lint | |
- name: Prettify code | |
uses: creyD/prettier_action@v4.3 | |
with: | |
same_commit: true | |
prettier_options: . --write | |
translate: | |
needs: [lint_pretty_and_cache_deps] | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
if: ${{ github.event_name == 'push' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
node-version: 20 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Translate | |
run: pnpm run translate | |
- name: Get last commit author | |
id: last-commit | |
run: echo "author=$(git log -1 --pretty=\"%an <%ae>\")" >> $GITHUB_OUTPUT | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_author: ${{ steps.last-commit.outputs.author }} | |
commit_message: Sync translations |