Feature: inisiasi penggunaan package creasi/laravel-base
#267
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: [email protected] | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: curl, dom, gd, imagick, intl, libxml, mbstring, pcntl, pdo, pdo_pgsql, zip | |
tools: composer:v2 | |
coverage: none | |
- 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 | |
- 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-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install PHP dependencies | |
run: | | |
composer config -g github-oauth.github.com ${{ secrets.PAT }} | |
composer install --prefer-dist --no-interaction --no-progress | |
composer ziggy:generate | |
- name: Install node.js dependencies | |
run: pnpm install | |
- name: Build frontend | |
run: pnpm build --mode ${{ env.APP_ENV }} | |
- 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: Prepare composer | |
id: composer-cache | |
run: | | |
composer config -g github-oauth.github.com ${{ secrets.PAT }} | |
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-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install PHP dependencies | |
run: composer update --prefer-dist --no-interaction --no-progress | |
- name: Run unit tests | |
run: php artisan test --ansi --coverage | |
- name: Generate reports for CodeClimate | |
env: | |
COVERAGE_FILE: tests/reports/clover.xml | |
CODECLIMATE_REPORT: 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.1 | |
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: Prepare composer | |
id: composer-cache | |
run: | | |
composer config -g github-oauth.github.com ${{ secrets.PAT }} | |
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-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install PHP dependencies | |
run: | | |
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 | |
- 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 - reports/codeclimate.*.json | ./cc-test-reporter upload-coverage --input - | |
deploy: | |
name: Deployment | |
needs: e2e | |
if: ${{ github.ref_name == 'main' && github.event_name == 'push' }} | |
# uses: creasico/laravel-project/.github/workflows/deploy.yml@main | |
uses: ./.github/workflows/deploy.yml | |
secrets: inherit |