- Upgrades build to use Node 22 - Adds version matrix to GH workflow to test compatibility with 20
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
name: Weblate Reformat
|
|
on:
|
|
pull_request_target:
|
|
paths:
|
|
- 'frontend/xliff/**'
|
|
- '.github/workflows/weblate-reformat.yaml'
|
|
|
|
branches:
|
|
- 'weblate'
|
|
|
|
jobs:
|
|
setup-and-build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
# Give the default GITHUB_TOKEN write permission to commit and push the
|
|
# added or changed files to the repository.
|
|
contents: write
|
|
|
|
steps:
|
|
# Setup:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
ref: ${{ github.head_ref }}
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
cache: 'yarn'
|
|
cache-dependency-path: frontend/yarn.lock
|
|
- name: Install dependencies
|
|
working-directory: frontend
|
|
env:
|
|
HUSKY: 0
|
|
run: yarn install --frozen-lockfile
|
|
|
|
# Localize:
|
|
- name: Reformat XLIFF files
|
|
working-directory: frontend
|
|
run: yarn localize:extract
|
|
|
|
- name: Rebuild frontend templates
|
|
working-directory: frontend
|
|
run: yarn localize:build
|
|
|
|
- name: Commit changes to upstream branch
|
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: Format Weblate Changes
|
|
file_pattern: '**/*.xlf **/__generated__/locales/*.ts'
|
|
skip_fetch: true
|
|
skip_checkout: true
|