218 lines
6.0 KiB
YAML
218 lines
6.0 KiB
YAML
name: laravel
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
postgres:
|
|
# Docker Hub image
|
|
image: postgres:14
|
|
# Provide the password for postgres
|
|
env:
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: postgres
|
|
# Set health checks to wait until postgres has started
|
|
options: >-
|
|
--health-cmd pg_isready
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
ports:
|
|
# Maps tcp port 5432 on service container to the host
|
|
- 5432:5432
|
|
mysql:
|
|
# Docker Hub image
|
|
image: mysql:8
|
|
# Provide the password for mysql
|
|
env:
|
|
MYSQL_ROOT_PASSWORD: test
|
|
MYSQL_DATABASE: test
|
|
MYSQL_USER: test
|
|
MYSQL_PASSWORD: test
|
|
# Set health checks to wait until mysql has started
|
|
options: >-
|
|
--health-cmd="mysqladmin ping"
|
|
--health-interval=10s
|
|
--health-timeout=5s
|
|
--health-retries=5
|
|
ports:
|
|
# Maps tcp port 3306 on service container to the host
|
|
- 3306:3306
|
|
|
|
concurrency:
|
|
group: 'run-tests'
|
|
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
php: [ 8.2 ]
|
|
connection: [ pgsql, mysql ]
|
|
include:
|
|
- connection: pgsql
|
|
host: localhost
|
|
port: 5432
|
|
user: postgres
|
|
password: postgres
|
|
database: postgres
|
|
- connection: mysql
|
|
host: '127.0.0.1'
|
|
port: 3306
|
|
user: root
|
|
password: test
|
|
database: test
|
|
|
|
name: Run Feature & Unit tests (PHP ${{ matrix.php }} - ${{ matrix.connection }})
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get Composer cache directory
|
|
id: composer-cache
|
|
run: |
|
|
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-composer-
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
extensions: dom, curl, mbstring, pdo, sqlite, pdo_sqlite
|
|
tools: composer:v2
|
|
coverage: none
|
|
|
|
- name: Prepare the environment
|
|
run: cp .env.example .env
|
|
|
|
- name: Install composer dependencies
|
|
run: composer install --prefer-dist --no-interaction --no-progress --ignore-platform-reqs --optimize-autoloader
|
|
|
|
- name: Directory permissions
|
|
run: chmod -R 777 storage bootstrap/cache
|
|
|
|
- name: Run tests (Unit and Feature)
|
|
run: ./vendor/bin/pest -p
|
|
env:
|
|
DB_CONNECTION: ${{ matrix.connection }}
|
|
DB_HOST: ${{ matrix.host }}
|
|
DB_PORT: ${{ matrix.port }}
|
|
DB_DATABASE: ${{ matrix.database }}
|
|
DB_USERNAME: ${{ matrix.user }}
|
|
DB_PASSWORD: ${{ matrix.password }}
|
|
|
|
- name: "Archive log results"
|
|
if: always()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: log results
|
|
path: storage/logs/laravel.log
|
|
retention-days: 3
|
|
|
|
build-nuxt-app:
|
|
runs-on: ubuntu-latest
|
|
name: Build the Nuxt app
|
|
defaults:
|
|
run:
|
|
working-directory: ./client
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '20'
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Prepare the environment
|
|
run: cp .env.example .env
|
|
|
|
- name: Install npm dependencies
|
|
run: npm install --no-audit --no-progress --silent
|
|
|
|
- name: Build client
|
|
run: npm run build
|
|
|
|
production-deploy:
|
|
needs: [ tests ]
|
|
if: success() && github.ref == 'refs/heads/main' && github.event_name == 'push'
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
php: [ 8.2 ]
|
|
|
|
name: Triggers deploy through Laravel Vapor
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get Composer cache directory
|
|
id: composer-cache
|
|
run: |
|
|
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-composer-
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
extensions: dom, curl, mbstring, pdo, sqlite, pdo_sqlite
|
|
tools: composer:v2
|
|
coverage: none
|
|
|
|
- name: Prepare the environment
|
|
run: cp .env.example .env
|
|
|
|
- name: Install composer dependencies
|
|
run: composer install --prefer-dist --no-interaction --no-progress --ignore-platform-reqs --optimize-autoloader
|
|
|
|
- name: Directory permissions
|
|
run: chmod -R 777 storage bootstrap/cache
|
|
|
|
- name: Install npm dependencies
|
|
run: npm install --no-audit --no-progress --silent
|
|
|
|
- name: Build client
|
|
run: npm run build
|
|
env:
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
|
|
- name: Deploy to production
|
|
run: php vendor/bin/vapor deploy api-production --commit="${GITHUB_SHA}" --message="${GITHUB_REF}"
|
|
env:
|
|
VAPOR_API_TOKEN: ${{ secrets.VAPOR_API_TOKEN }}
|