Skip to content

Improved typing and migrated to Vitest (#132) #81

Improved typing and migrated to Vitest (#132)

Improved typing and migrated to Vitest (#132) #81

Workflow file for this run

name: 'Run tests'
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
# https://playwright.dev/docs/ci#via-containers
container:
image: mcr.microsoft.com/playwright:v1.36.0-jammy
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run lint
- run: npm run test:types
- run: npm test
timeout-minutes: 10