Skip to content
This repository was archived by the owner on Jul 1, 2026. It is now read-only.

Release v3.1.14.

Release v3.1.14. #115

Workflow file for this run

name: CI
on:
push:
branches: [main, dev/**]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '22'
cache: npm
- run: npm ci
- run: npm run check:i18n
- run: npm run lint
- run: npm run test
- run: npm run build
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '22'
cache: npm
- run: npm ci
- run: npx playwright install chromium --with-deps
- run: npm run test:e2e