From b4f03b0b52fb9b9a7c967189c1f082123ec59e81 Mon Sep 17 00:00:00 2001 From: Nelito Junior Date: Tue, 22 Oct 2024 18:39:38 -0300 Subject: [PATCH] refactor: Update PR tests workflow to use npx playwright for E2E tests --- .github/workflows/pr-tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index ea14461c..4524fd07 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -93,16 +93,17 @@ jobs: with: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - + - name: Start Test Node run: pnpm node:up - name: Run PNPM install id: pnpm-cache run: pnpm install --frozen-lockfile - - # - name: Install Playwright Browsers - # run: pnpm exec playwright install --with-deps chromium + + # E2E tests running with Playwright + - name: Install Playwright Browsers + run: npx playwright install --with-deps chromium - name: Run build:connectors run: pnpm build:connectors