Skip to content

Remove yarn.lock, clean up .gitignore #45

Remove yarn.lock, clean up .gitignore

Remove yarn.lock, clean up .gitignore #45

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