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 5504d71 commit d2110a1Copy full SHA for d2110a1
.github/workflows/phpunit.yml
@@ -25,15 +25,15 @@ jobs:
25
run: |
26
mkdir -p database
27
touch database/database.sqlite
28
- - name: Compile assets
29
- run: |
30
- npm install
31
- npm run dev
+ - name: Build assets for production
+ env:
+ LARAVEL_BYPASS_ENV_CHECK: 1
+ run: npm install && npm run production
32
- name: Execute tests (Unit and Feature tests) via PHPUnit
33
env:
34
DB_CONNECTION: sqlite
35
DB_DATABASE: database/database.sqlite
36
CACHE_DRIVER: array
37
SESSION_DRIVER: array
38
QUEUE_DRIVER: sync
39
- run: vendor/bin/phpunit
+ run: vendor/bin/phpunit
0 commit comments