Skip to content

release v2.0.2

release v2.0.2 #20

Workflow file for this run

name: CI
on: [push]
jobs:
verify:
name: ${{ matrix.script.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
script:
- name: Unit tests
command: npx playwright install --with-deps && npm test
- name: Lint
command: npm run lint
- name: Format
command: npm run format
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- run: npm ci
- run: ${{ matrix.script.command }}