Skip to content

fix: added support for shifted variants in virtual keyboard, incl. Sw… #609

fix: added support for shifted variants in virtual keyboard, incl. Sw…

fix: added support for shifted variants in virtual keyboard, incl. Sw… #609

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-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- 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@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30