Skip to content

fix: batal 30 menit issue #445

fix: batal 30 menit issue

fix: batal 30 menit issue #445

Workflow file for this run

name: Check Format and Types
on:
push:
branches:
- '**'
jobs:
test:
name: Run Tests
runs-on: portal-cf
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '9'
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Generate Prisma Client
run: pnpm exec prisma generate
- name: Run Test
run: pnpm test-all