Skip to content

feat/trpc: Add support for trpc and improve the api response time 5x-10x faster #89

feat/trpc: Add support for trpc and improve the api response time 5x-10x faster

feat/trpc: Add support for trpc and improve the api response time 5x-10x faster #89

Workflow file for this run

name: Formatting Check
on:
pull_request:
branches: [main]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Prettier Check
run: npm run format:check || (echo "Code is not formatted! Run 'npm run format' locally." && exit 1)