Skip to content

Commit

Permalink
ci: install playwright browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
trezy committed Sep 3, 2024
1 parent f27bda8 commit cb05769
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/handle-release-branch-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ jobs:
# command: test:types
- name: Lint
command: test:lint
installPlaywright: false
- name: Unit tests
command: test:unit
installPlaywright: false
- name: E2E tests
command: test:e2e
installPlaywright: true
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -27,6 +30,10 @@ jobs:
- name: Setup
uses: ./.github/actions/setup

- name: Install Playwright browsers
if: ${{ matrix.script.installPlaywright == 'true' }}
run: npx playwright install

- name: ${{ matrix.script.name }}
run: npm run ${{ matrix.script.command }}

Expand Down

0 comments on commit cb05769

Please sign in to comment.