From fed86088c375b0570b324cfc8bbca2115edb763b Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sun, 8 Jun 2025 09:18:10 +0200 Subject: [PATCH] Use pnpm to build and run the service --- .github/workflows/playwright.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index bdf273e..f419958 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -21,10 +21,10 @@ jobs: - name: Install dependencies run: npm install -g pnpm && pnpm install - name: Build the service that will be tested - run: npm run build + run: pnpm run build - name: Install Playwright Browsers run: pnpm exec playwright install --with-deps - name: Run the service that will be tested - run: npm run start & + run: pnpm run start & - name: Run Playwright tests run: pnpm exec playwright test