Skip to content

Feature using deployphp/action for deployment #226

Feature using deployphp/action for deployment

Feature using deployphp/action for deployment #226

Workflow file for this run

name: Code Quality
on:
schedule: # scheduled to run at 23.00 on Saturday (UTC), means 6.00 on Monday (WIB)
- cron: '0 23 * * 6'
push:
branches: [main]
# paths: ['.github/**.yml', '**.php', '**.js', '**.ts', '**.vue']
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
# paths: ['.github/**.yml', '**.php', '**.js', '**.ts', '**.vue']
env:
APP_NAME: ${{ vars.APP_NAME }}
APP_ENV: testing
APP_URL: http://127.0.0.1:8000
APP_KEY: ${{ secrets.APP_KEY }}
APP_LOCALE: id
# AWS_ENDPOINT: 'https://is3.cloudhost.id'
# AWS_DEFAULT_REGION: 'ap-southeast-3'
# AWS_BUCKET: creasi-staging
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
CC_TEST_REPORTER_URL: ${{ vars.CC_TEST_REPORTER_URL }}
DB_DATABASE: creasico
DB_USERNAME: creasico
DB_PASSWORD: secret
MAIL_FROM_ADDRESS: devtest@creasi.dev
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
jobs:
build:
runs-on: ubuntu-latest
name: Build
env:
VITE_SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: curl, dom, gd, imagick, intl, libxml, mbstring, pcntl, pdo, pdo_pgsql, zip
tools: composer:v2
coverage: none
- name: Get Composer cache directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
uses: nick-invision/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: |
composer install --prefer-dist --no-interaction --no-progress
composer ziggy:generate
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.JS
uses: actions/setup-node@v3
with:
cache: pnpm
node-version: 18.x
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm install
- name: Build assets
run: pnpm build
- name: Store assets
uses: actions/upload-artifact@v3
with:
name: public
path: public/build
units:
runs-on: ubuntu-latest
name: Unit Test with PHP ${{ matrix.php }}
needs: build
env:
TELESCOPE_ENABLED: false
services:
postgresql:
image: postgres:14
env:
POSTGRES_DB: ${{ env.DB_DATABASE }}
POSTGRES_USER: ${{ env.DB_USERNAME }}
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }}
ports:
- 5432:5432
options: --health-cmd=pg_isready --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: false
matrix:
php: ['8.1', '8.2']
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, dom, gd, imagick, intl, libxml, mbstring, pcntl, pdo, pdo_pgsql, zip
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: xdebug
- name: Download assets
id: download
uses: actions/download-artifact@v3
with:
name: public
path: public/build
- name: Get Composer cache directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.php }}-composer-
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
- name: Install dependencies
uses: nick-invision/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: composer update --prefer-dist --no-interaction --no-progress
- name: Run unit tests
run: php artisan test --coverage
- name: Generate reports for CodeClimate
env:
COVERAGE_FILE: tests/reports/clover.xml
CODECLIMATE_REPORT: ${{ github.workspace }}/tests/reports/codeclimate.${{ matrix.php }}.json
run: |
curl -LSs $CC_TEST_REPORTER_URL > ./cc-test-reporter && chmod +x ./cc-test-reporter
./cc-test-reporter format-coverage -t clover -o $CODECLIMATE_REPORT $COVERAGE_FILE
- name: Upload tests reports
uses: actions/upload-artifact@v3
with:
name: test-reports
path: |
tests/coverage
tests/reports
e2e:
runs-on: ubuntu-latest
name: Integration Test on BrowserStack
needs: units
env:
DUSK_HEADLESS_DISABLED: true
TELESCOPE_ENABLED: false
services:
postgresql:
image: postgres:14
env:
POSTGRES_DB: ${{ env.DB_DATABASE }}
POSTGRES_USER: ${{ env.DB_USERNAME }}
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }}
ports:
- 5432:5432
options: --health-cmd=pg_isready --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: curl, dom, gd, igbinary, imagick, intl, libxml, mbstring, pcntl, pdo, pdo_pgsql, zip
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: xdebug
- name: Download assets
id: download
uses: actions/download-artifact@v3
with:
name: public
path: public/build
- name: Get Composer cache directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
uses: nick-invision/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: composer install --prefer-dist --no-interaction --no-progress
- name: Setup BrowserStack env # Invokes the setup-env action
uses: browserstack/github-actions/setup-env@master
with:
username: ${{ secrets.BROWSERSTACK_USERNAME }}
access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
- name: Start BrowserStack local tunnel
uses: browserstack/github-actions/setup-local@master
with:
local-testing: start
local-logging-level: all-logs
local-identifier: random
- name: Start dev server
run: php artisan serve > /dev/null 2>&1 &
- name: Run e2e tests
run: php artisan dusk
- name: Upload e2e tests logs
if: failure()
uses: actions/upload-artifact@v3
with:
name: e2e-logs
path: |
tests/Browser/console
tests/Browser/screenshots
- name: Stop BrowserStack local tunnel
uses: browserstack/github-actions/setup-local@master
with:
local-testing: stop
reports:
name: Report Test Coverages
needs: units
runs-on: ubuntu-latest
steps:
- name: Download test reports
uses: actions/download-artifact@v3
with:
name: test-reports
path: tests
- name: Report to CodeClimate
run: |
curl -LSs $CC_TEST_REPORTER_URL > ./cc-test-reporter && chmod +x ./cc-test-reporter
./cc-test-reporter sum-coverage -o - tests/reports/codeclimate.*.json | ./cc-test-reporter upload-coverage --input -
deploy:
name: Deployment
needs: e2e
# uses: creasico/laravel-project/.github/workflows/deploy.yml@main
uses: ./.github/workflows/deploy.yml
# if: ${{ github.ref_name == 'main' && github.event_name == 'push' }}