20661 fe implement multivariate layers with bivariate style #1118
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 Report | |
env: | |
HUSKY: 0 | |
on: | |
pull_request: | |
paths-ignore: | |
- 'e2e/**' | |
- 'playwright.config.ts' | |
- '.github/workflows/run_e2e_tests.yml' | |
jobs: | |
report: | |
name: Generate report | |
runs-on: ubuntu-24.04 | |
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || !github.event.pull_request.draft }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- run: pnpm i --prod=false | |
- run: pnpm run --silent i18n:report --out md > ./.github/workflows/translations-report.md | |
- name: Comment | |
uses: NejcZdovc/comment-pr@v2.1.0 | |
with: | |
file: 'translations-report.md' | |
identifier: 'GITHUB_COMMENT_TRANSLATION' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |