From 081c8eb9dd9b4ac367fc67803c9390a3c0e5d2e5 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sun, 11 Aug 2024 21:19:47 +0200 Subject: [PATCH] Avoid unnecessary step of installing browsers --- .github/workflows/playwright.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 277af5e..60342ff 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -19,8 +19,6 @@ jobs: run: npm install -g pnpm && pnpm install - name: Build the service that will be tested run: npm 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 & - name: Run Playwright tests