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 bf67589 commit c05fa37Copy full SHA for c05fa37
.github/workflows/phpunit.yml
@@ -25,10 +25,12 @@ jobs:
25
run: |
26
mkdir -p database
27
touch database/database.sqlite
28
- - name: Build assets for production
+ - name: Build assets for development
29
env:
30
LARAVEL_BYPASS_ENV_CHECK: 1
31
- run: npm install && npm run dev
+ run: npm install && npm run dev &
32
+ - name: Wait for server to start
33
+ run: sleep 10s # Adjust this time according to your server startup time
34
- name: Execute tests (Unit and Feature tests) via PHPUnit
35
36
DB_CONNECTION: sqlite
0 commit comments