Skip to content

ci: fix check pipeline #27

ci: fix check pipeline

ci: fix check pipeline #27

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install
- run: pnpm run format:check
- run: pnpm run lint
- run: pnpm run test:types