We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17738d5 commit 61be853Copy full SHA for 61be853
.github/workflows/laravel.yml
@@ -14,13 +14,17 @@ jobs:
14
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
15
with:
16
php-version: '8.2'
17
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
18
- name: Copy .env
19
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
20
- name: Install Dependencies
21
run: composer update -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
22
+ - name: Install Bun
23
+ run: |
24
+ curl -fsSL https://bun.sh/install | bash
25
+ echo "$HOME/.bun/bin" >> $GITHUB_PATH
26
- name: Install Node Dependencies
- run: npm i --legacy-peer-deps && npm run build
27
+ run: bun i && bun run build
28
- name: Generate key
29
run: php artisan key:generate
30
- name: Directory Permissions
0 commit comments