Skip to content

Revert "chore: run test prepare on ci" #100

Revert "chore: run test prepare on ci"

Revert "chore: run test prepare on ci" #100

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@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
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@v4
with:
name: reports
path: ./**/reports
retention-days: 5
if: always()