From ca51a926fb600be3e82162444b896c7df2c2752c Mon Sep 17 00:00:00 2001 From: pit Date: Thu, 5 Oct 2023 10:53:19 +0300 Subject: [PATCH] chore: change from npm to npx --- .github/workflows/e2e-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index cfe28d660..599a6b5fd 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -39,9 +39,9 @@ jobs: - name: Install Prisma Client run: npm install @prisma/client - name: Generate Prisma Client - run: npm run prisma:generate -w @documenso/prisma + run: npx prisma generate --schema packages/prisma/schema.prisma - name: Create the database - run: npm run prisma:migrate-dev -w @documenso/prisma + run: npx prisma migrate dev - name: Run Playwright tests run: npm run ci - uses: actions/upload-artifact@v3