Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
17 changes: 12 additions & 5 deletions .github/workflows/i18n-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
node-version: '26'
cache: 'pnpm'
cache-dependency-path: frontend/pnpm-lock.yaml

Expand Down Expand Up @@ -205,6 +205,7 @@ jobs:
test-rtl:
name: Test RTL Support
runs-on: ubuntu-latest
timeout-minutes: 15
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v6
Expand All @@ -217,7 +218,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
node-version: '26'
cache: 'pnpm'
cache-dependency-path: frontend/pnpm-lock.yaml

Expand All @@ -229,7 +230,13 @@ jobs:
- name: Install Playwright
run: |
cd frontend
pnpm exec playwright install --with-deps chromium firefox
# Only download browsers when visual specs actually exist; otherwise the
# heavyweight --with-deps install runs for zero tests (and can hang).
if ls tests/visual/*.spec.ts 1> /dev/null 2>&1; then
pnpm exec playwright install --with-deps chromium firefox
else
echo "No visual test files found, skipping Playwright install..."
fi

- name: Run RTL visual regression tests
run: |
Expand Down Expand Up @@ -272,7 +279,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
node-version: '26'
cache: 'pnpm'
cache-dependency-path: frontend/pnpm-lock.yaml

Expand Down Expand Up @@ -302,7 +309,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
node-version: '26'
cache: 'pnpm'
cache-dependency-path: frontend/pnpm-lock.yaml

Expand Down
Loading
Loading