Skip to content

README: restructured Quick Start, Who is it for, Frameworks, consiste… #62

README: restructured Quick Start, Who is it for, Frameworks, consiste…

README: restructured Quick Start, Who is it for, Frameworks, consiste… #62

Workflow file for this run

name: CI
on:
push:
branches: [master, v2-typescript-rewrite]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: Build
run: npm run build
- name: Unit tests
run: npm test
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium firefox webkit
- name: Browser tests
run: npm run test:browser