Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSharp committed Apr 10, 2024
1 parent a2229b5 commit 26c0fcb
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ jobs:
extensions: zip, sqlite3
coverage: none

- name: Check composer compatability
run: composer check-platform-reqs

- name: Install composer dependencies
run: composer install --no-cache --no-ansi --no-interaction --no-progress

Expand All @@ -59,10 +56,6 @@ jobs:
- name: Generate key
run: php artisan key:generate

- name: Build frontend
run: |
npm run build
- name: Execute tests
env:
DB_USERNAME: root
Expand All @@ -88,6 +81,11 @@ jobs:
extensions: zip, sqlite3
coverage: none

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20

- name: Restore npm cache
uses: actions/cache@v4
with:
Expand All @@ -109,7 +107,7 @@ jobs:
- name: Generate key
run: php artisan key:generate

- name: Echo URL to .env
- name: Echo DB credentials to .env
run: |
echo "DB_HOST=${{ secrets.DB_HOST}}" >> .env
echo "DB_DATABASE=${{ secrets.DB_DATABASE}}" >> .env
Expand Down

0 comments on commit 26c0fcb

Please sign in to comment.