Skip to content

chore(deps-dev): bump vitest from 2.1.8 to 2.1.9 #1122

chore(deps-dev): bump vitest from 2.1.8 to 2.1.9

chore(deps-dev): bump vitest from 2.1.8 to 2.1.9 #1122

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}}