Skip to content

Translation error, fixed code #1200

Translation error, fixed code

Translation error, fixed code #1200

Workflow file for this run

name: Run Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
timeout-minutes: 20
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Build library
run: npm run build
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run All tests
run: npm test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30