Skip to content

Added AI translation for Czech language #10

Added AI translation for Czech language

Added AI translation for Czech language #10

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [node, 22.x, 23.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
if [ ! -f package-lock.json ]; then
npm install --package-lock-only
fi
npm install
- name: Run tests
run: npm test