Skip to content

Commit

Permalink
fixed run command in Playwright jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
aasimsyed committed Apr 23, 2024
1 parent 2e72acc commit ec5d22a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr_ci_frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit ec5d22a

Please sign in to comment.