Skip to content

Convert test infrastructure from Karma/Mocha/Chai to Vitest with Playwright #136

Convert test infrastructure from Karma/Mocha/Chai to Vitest with Playwright

Convert test infrastructure from Karma/Mocha/Chai to Vitest with Playwright #136

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'npm'
- run: npm install
- run: npx playwright install chromium --only-shell
- run: npm run build
- run: npm run lint
- run: npm test
env:
CI: true