Skip to content

Commit 0e19037

Browse files
Change steps order
1 parent 7109d5a commit 0e19037

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/tests.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,8 @@ jobs:
3131
node-version: '22'
3232
cache: 'npm'
3333

34-
- name: Install Node Dependencies
35-
run: npm ci
36-
37-
- name: Build Assets
38-
run: npm run build
34+
- name: Create SQLite Database
35+
run: touch database/database.sqlite
3936

4037
- name: Install Dependencies
4138
run: composer install --no-interaction --prefer-dist --optimize-autoloader
@@ -46,5 +43,11 @@ jobs:
4643
- name: Generate Application Key
4744
run: php artisan key:generate
4845

46+
- name: Install Node Dependencies
47+
run: npm ci
48+
49+
- name: Build Assets
50+
run: npm run build
51+
4952
- name: Tests
5053
run: ./vendor/bin/phpunit

0 commit comments

Comments
 (0)