There was an error while loading. Please reload this page.
1 parent 4d1bb81 commit 5ee30bdCopy full SHA for 5ee30bd
1 file changed
.github/workflows/ci.yml
@@ -77,6 +77,16 @@ jobs:
77
- name: Run Tests
78
run: vendor/bin/phpunit --coverage-clover coverage.xml
79
80
+ - name: DEBUG serve probe
81
+ if: github.event_name == 'pull_request'
82
+ run: |
83
+ php artisan serve > serve.log 2>&1 &
84
+ sleep 5
85
+ curl -sS -i http://localhost:8000/ | head -30 || true
86
+ echo "--- serve.log"; cat serve.log
87
+ echo "--- laravel.log"; tail -n 40 storage/logs/laravel.log || true
88
+ kill %1
89
+
90
- name: SEO check (local build)
91
if: github.event_name == 'pull_request'
92
uses: ikidnapmyself/seo-checkup@v1
0 commit comments