Skip to content

i18n: new translations #2711

i18n: new translations

i18n: new translations #2711

Workflow file for this run

name: Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check-matrix:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
node: ['22', '24']
check: [check-source-formatting, check-types, lint]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm run ${{ matrix.check }}
check:
# so we do not need to update GitHub repo config
runs-on: ubuntu-latest
needs:
- check-matrix
if: always()
steps:
- run: |
if [[ "${{ needs.check-matrix.result }}" != "success" ]]; then
exit 1
fi