There was an error while loading. Please reload this page.
1 parent 591a7e9 commit ebc2690Copy full SHA for ebc2690
1 file changed
.github/workflows/test-runner.yml
@@ -69,6 +69,16 @@ jobs:
69
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
70
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --no-interaction
71
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
82
- name: Run test suite
83
run: vendor/bin/pest --parallel --shard=${{ matrix.shard }}/4 --coverage-clover ./coverage.xml
84
0 commit comments