Skip to content

chore: downgrade karma & update playwright #164

chore: downgrade karma & update playwright

chore: downgrade karma & update playwright #164

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- uses: browser-actions/setup-chrome@latest
- name: Install dependencies
run: |
npm install
npm run test:setup
- name: Run tests
run: |
npm run test
npm run test:coverage || true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}