Skip to content

fix more

fix more #51

Workflow file for this run

name: ci
on: push
jobs:
test:
runs-on: ubuntu-20.04
name: Test on Node 20
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- run: npm install
- run: npm run lint:ts
- run: npx vite build
- run: npm run clean-coverage
- run: npx cypress run
- name: Upload coverage report on Node 20 to coveralls.io...
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}