From 1bb47f98a1a5b6ee8ba9ff6563f0a497de051ae4 Mon Sep 17 00:00:00 2001 From: pit Date: Thu, 5 Oct 2023 10:24:03 +0300 Subject: [PATCH] chore: install prisma before prisma client --- .github/workflows/e2e-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index eb1e7117b..cfe28d660 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -34,6 +34,8 @@ jobs: run: cp .env.example .env - name: Install Playwright Browsers run: npx playwright install --with-deps + - name: Install Prisma + run: npm install prisma - name: Install Prisma Client run: npm install @prisma/client - name: Generate Prisma Client