From ec5d22ab4a18e4a538d099e652e3a29ede37d9c7 Mon Sep 17 00:00:00 2001 From: aasim Date: Tue, 23 Apr 2024 16:22:54 -0400 Subject: [PATCH] fixed run command in Playwright jobs --- .github/workflows/pr_ci_frontend.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_ci_frontend.yaml b/.github/workflows/pr_ci_frontend.yaml index ac81f2d91..be38a21ec 100644 --- a/.github/workflows/pr_ci_frontend.yaml +++ b/.github/workflows/pr_ci_frontend.yaml @@ -44,13 +44,16 @@ jobs: with: cmd: eslint . --ext .js,.vue dir: "frontend" + - name: Install Playwright Browsers working-directory: ./frontend - run: yarn playwright install --with-deps + run: | + yarn playwright install --with-deps - name: Run Playwright tests working-directory: ./frontend - run: yarn playwright test + run: | + yarn playwright test - name: Upload Playwright report if: always()