Skip to content

Commit ebc2690

Browse files
committed
chore: add playwright installation step
1 parent 591a7e9 commit ebc2690

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/test-runner.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,16 @@ jobs:
6969
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
7070
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --no-interaction
7171
72+
- name: Setup Node.js
73+
uses: actions/setup-node@v4
74+
with:
75+
node-version: lts/*
76+
77+
- name: Install Playwright
78+
run: |
79+
npm install playwright@latest
80+
npx playwright install --with-deps
81+
7282
- name: Run test suite
7383
run: vendor/bin/pest --parallel --shard=${{ matrix.shard }}/4 --coverage-clover ./coverage.xml
7484

0 commit comments

Comments
 (0)