From ae7a372ca07a766fcbfdffa060afdaf457302178 Mon Sep 17 00:00:00 2001 From: Catalin Pit Date: Sat, 30 Sep 2023 18:54:21 +0100 Subject: [PATCH] ci: trigger github action --- .github/workflows/e2e-tests.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index e15af9a49..2982cff57 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -1,9 +1,9 @@ name: Playwright Tests on: push: - branches: [feat/refresh] + branches: [feat/refresh, feat/add-e2e-testing] pull_request: - branches: [feat/refresh] + branches: [feat/refresh, feat/add-e2e-testing] jobs: e2e_tests: timeout-minutes: 60 @@ -38,8 +38,10 @@ jobs: run: npm run build - name: Install Playwright Browsers run: npx playwright install --with-deps + - name: Install Prisma Client + run: npm install @prisma/client - name: Create the database - run: npx prisma migrate deploy + run: npm run prisma:migrate-dev -w @documenso/prisma - name: Run Playwright tests run: npm run ci - uses: actions/upload-artifact@v3