From 10f9c8a4c7f6405008ee5fbd2e3a86780a3b016a Mon Sep 17 00:00:00 2001 From: davronkhandamov Date: Wed, 28 Feb 2024 16:05:08 +0500 Subject: [PATCH] added build command --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 36fd799..f1098d9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,5 +28,7 @@ jobs: node-version: ${{matrix.node-version}} - name: Install dependencies run: npm i - npx prisma build - npm run build + - name: Genereate prisma + run: npx prisma build + - name: Build next app + run: npm run build