Skip to content

feat(i18n): implement and document a centralized internationalization… #276

feat(i18n): implement and document a centralized internationalization…

feat(i18n): implement and document a centralized internationalization… #276

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
# Fetch all history so we can compare with main
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 22.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build affected projects
run: pnpm --filter="...[origin/main]" run build
- name: Lint affected projects
run: pnpm --filter="...[origin/main]" run lint --if-present
- name: Run Biome for the whole repo
run: pnpm biome ci .