We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7efab11 commit 4f1f9e2Copy full SHA for 4f1f9e2
.github/workflows/install-test.yaml
@@ -69,13 +69,14 @@ jobs:
69
composer create-project rcarvello/webmvcframework testapp --prefer-dist --no-interaction
70
cd testapp
71
php setup-config.php
72
- composer run dev
+ composer run dev > server.log 2>&1 &
73
+ echo $! > server.pid
74
sleep 15
75
76
- name: Test server
77
run: |
78
- curl -s http://localhost:8000 | head -n 20
79
+ curl -s http://localhost:3000 | head -n 20
80
81
- name: Stop dev server
82
0 commit comments