We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80eacfd commit cc5f416Copy full SHA for cc5f416
.github/workflows/tests.yml
@@ -31,11 +31,8 @@ jobs:
31
node-version: '22'
32
cache: 'npm'
33
34
- - name: Install Node Dependencies
35
- run: npm ci
36
-
37
- - name: Build Assets
38
- run: npm run build
+ - name: Create SQLite Database
+ run: touch database/database.sqlite
39
40
- name: Install Dependencies
41
run: composer install --no-interaction --prefer-dist --optimize-autoloader
@@ -46,5 +43,11 @@ jobs:
46
43
- name: Generate Application Key
47
44
run: php artisan key:generate
48
45
+ - name: Install Node Dependencies
+ run: npm ci
+
49
+ - name: Build Assets
50
+ run: npm run build
51
52
- name: Tests
53
run: ./vendor/bin/phpunit
0 commit comments