Skip to content

Commit 7799ad3

Browse files
Update install.yml
1 parent 258b2b1 commit 7799ad3

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/install.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Node.js
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: '20'
25+
node-version: '22'
2626

2727

2828
- name: Start database
@@ -33,10 +33,10 @@ jobs:
3333

3434
- name: Copy environment file
3535
run: cp .env.testing .env
36-
36+
3737
- name: Install dependencies
38-
run: composer install
39-
38+
run: composer require laravel/framework:"^12.0"
39+
4040
- name: Generate application key
4141
run: php artisan key:generate
4242

@@ -46,6 +46,10 @@ jobs:
4646
- name: Seed database
4747
run: php artisan db:seed
4848

49+
- name: Install dependencies
50+
run: composer install
51+
52+
4953
- name: Install npm dependencies
5054
run: npm install
5155

0 commit comments

Comments
 (0)