fix(Pivot Table): Fix column width to respect currency config (#31414) #24290
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: 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-22.04 | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v4 | |
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@v4 | |
with: | |
node-version: '18' | |
- 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-22.04 | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v4 | |
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: Test babel extraction | |
if: steps.check.outputs.python | |
run: ./scripts/translations/babel_update.sh |