Skip to content

Commit

Permalink
full clean up
Browse files Browse the repository at this point in the history
- remove Vue files
- update composer
- Clean out npm packages of vue related & update vite
- update github action
  • Loading branch information
SethSharp committed Apr 17, 2024
1 parent c0fb474 commit 2a30c71
Show file tree
Hide file tree
Showing 78 changed files with 1,094 additions and 4,334 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on: [ push ]
jobs:
deployment:

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

if: github.ref == 'refs/heads/main'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -31,20 +31,16 @@ jobs:
run: npm ci

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

- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.production.example', '.env');"

- name: Generate key
run: php artisan key:generate

- name: Build frontend
run: |
npm run build
- name: Run Tests
run: ./vendor/bin/phpunit

Expand Down
Loading

0 comments on commit 2a30c71

Please sign in to comment.