Skip to content

chore: run test prepare on ci #99

chore: run test prepare on ci

chore: run test prepare on ci #99

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 run build
- run: pnpm run lint:report
- run: pnpm run test:prepare
- run: pnpm run test:report
- uses: actions/upload-artifact@v4
with:
name: reports
path: ./**/reports
retention-days: 5
if: always()