Skip to content

ignore cshsarp build output #91

ignore cshsarp build output

ignore cshsarp build output #91

Workflow file for this run

name: Code Quality Check
on:
push:
branches:
- main
pull_request:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v3
name: Setup pnpm
with:
version: 9
- uses: actions/setup-node@v4
name: Setup Node
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm format:check
- run: pnpm typecheck
- run: pnpm lint:ci
# - run: pnpm affected:build --parallel=3