diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 3342827..051885d 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -15,9 +15,11 @@ jobs: node-version: lts/* - name: Install dependencies run: npm install -g pnpm && pnpm install - - name: Build and start the service that will be tested - run: npm run build && npm run start & + - 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 run: pnpm exec playwright test