Skip to content

Typing improvements & fix all ts errors in tests & migrate tests to vitest + playwright #76

Typing improvements & fix all ts errors in tests & migrate tests to vitest + playwright

Typing improvements & fix all ts errors in tests & migrate tests to vitest + playwright #76

Workflow file for this run

name: 'Run tests'
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npm ci
- run: npm run lint
- run: npm run test:types
- run: npm run test:ci
timeout-minutes: 10
env:
SAUCE_USERNAME: quill
SAUCE_ACCESS_KEY: ${{ secrets.SAUCELABS_ACCESS_KEY }}