Skip to content

replace cypress with vitest #63

replace cypress with vitest

replace cypress with vitest #63

Workflow file for this run

name: ci
on: push
jobs:
test:
runs-on: ubuntu-20.04
name: Test on Node 18
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Install Playwright
run: pnpx playwright install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Upload coverage report on Node 18 to coveralls.io...
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}