mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
name: Translations
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
- "[0-9].[0-9]*"
|
|
pull_request:
|
|
types: [synchronize, opened, reopened, ready_for_review]
|
|
|
|
# cancel previous workflow jobs for PRs
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
frontend-check-translations:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
submodules: recursive
|
|
|
|
- name: Check for file changes
|
|
id: check
|
|
uses: ./.github/actions/change-detector/
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Setup Node.js
|
|
if: steps.check.outputs.frontend
|
|
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
|
|
with:
|
|
node-version-file: './superset-frontend/.nvmrc'
|
|
- name: Install dependencies
|
|
if: steps.check.outputs.frontend
|
|
uses: ./.github/actions/cached-dependencies
|
|
with:
|
|
run: npm-install
|
|
- name: lint
|
|
if: steps.check.outputs.frontend
|
|
working-directory: ./superset-frontend
|
|
run: |
|
|
npm run build-translation
|
|
|
|
babel-extract:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
submodules: recursive
|
|
- name: Check for file changes
|
|
id: check
|
|
uses: ./.github/actions/change-detector/
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Setup Python
|
|
if: steps.check.outputs.python
|
|
uses: ./.github/actions/setup-backend/
|
|
|
|
- name: Install msgcat
|
|
run: sudo apt update && sudo apt install gettext
|
|
|
|
- name: Test babel extraction
|
|
if: steps.check.outputs.python
|
|
run: ./scripts/translations/babel_update.sh
|