Skip to content

Remove unit tests section from workflows #2

Remove unit tests section from workflows

Remove unit tests section from workflows #2

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: mirromutth/[email protected]
with:
mysql database: laravel-test-db
mysql user: laravel_test_user
mysql password: example
- name: Copy .env
run: cp .env.example .env
- name: Install composer Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Install node dependencies
run: npm ci
- name: Setup Project
run: |
php artisan config:clear
php artisan cache:clear
php artisan key:generate
npm run build
- name: Directory Permissions
run: chmod 755 -R storage bootstrap/cache
# - name: Run Unit tests
# env:
# APP_ENV: testing
# DB_CONNECTION: mysql
# DB_USERNAME: laravel_test_user
# DB_PASSWORD: super_secret
# DB_DATABASE: laravel_test_db
# run: php artisan test
- name: Deploy to Server
if: ${{ success() }}
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
port: ${{ secrets.SSH_PORT }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
script_stop: true
script: |
cd apps
cd laravel-example
git pull
npm ci
npm run prod
composer i
php artisan migrate --force