Skip to content

fix: manually install vitest/except to fix linting error #96

fix: manually install vitest/except to fix linting error

fix: manually install vitest/except to fix linting error #96

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "pnpm"
registry-url: "https://registry.npmjs.org"
- run: pnpm install
- run: pnpm exec playwright install --with-deps
- run: pnpm run build
- run: pnpm run lint:report
- run: pnpm run test:report
- uses: actions/upload-artifact@v3
with:
name: reports
path: ./**/reports
retention-days: 5
if: always()