Skip to content

[CRM][Fullstack] - Sort + Searches and Cleanup #855

[CRM][Fullstack] - Sort + Searches and Cleanup

[CRM][Fullstack] - Sort + Searches and Cleanup #855

name: Prettier Check
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
- 'feature/**'
jobs:
run-prettier-check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 22
cache: 'pnpm'
- name: Install modules
run: pnpm install
- name: Run prettier check
run: pnpm prettier:check
- name: Run Prisma format check
run: npx prisma format --check