This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
Merge pull request #18 from ptah-sh/release-please--branches--main #42
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: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
HUSKY: 0 | |
BROADCAST_DRIVER: log | |
CACHE_DRIVER: redis | |
QUEUE_CONNECTION: redis | |
SESSION_DRIVER: redis | |
DB_CONNECTION: pgsql | |
DB_HOST: localhost | |
DB_PASSWORD: postgres | |
DB_USERNAME: postgres | |
DB_DATABASE: postgres | |
# Docs: https://docs.github.com/en/actions/using-containerized-services | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: | |
- 5432/tcp | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 | |
redis: | |
image: redis | |
ports: | |
- 6379/tcp | |
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: pdo pdo_pgsql pgsql bcmath | |
coverage: xdebug | |
- 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@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
# Use composer.json for key, if composer.lock is not committed. | |
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install Composer dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install Node dependencies | |
run: npm i --frozen-lockfile | |
- name: Build JS | |
run: npm run build | |
- name: Prepare the application | |
run: | | |
php -r "file_exists('.env') || copy('.env.example', '.env');" | |
php artisan key:generate | |
- name: Clear Config | |
run: php artisan config:clear | |
- name: Run Migration | |
run: php artisan migrate -v | |
env: | |
DB_PORT: ${{ job.services.postgres.ports[5432] }} | |
REDIS_PORT: ${{ job.services.redis.ports['6379'] }} | |
- name: Test with pest | |
run: php artisan test --coverage-text | |
env: | |
DB_PORT: ${{ job.services.postgres.ports[5432] }} | |
REDIS_PORT: ${{ job.services.redis.ports['6379'] }} | |
- name: Pint! | |
run: vendor/bin/pint --test |