chore(deps): bump the package-front group with 4 updates #156
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: Test | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
laravel-tests: | |
runs-on: ubuntu-latest | |
env: | |
MARIADB_ROOT_PASSWORD: root_testing | |
MARIADB_DB: testing | |
MARIADB_USER: testing | |
MARIADB_PASSWORD: testing | |
services: | |
db: | |
image: mariadb:10.6.17 | |
env: | |
MARIADB_ROOT_PASSWORD: ${{ env.MARIADB_ROOT_PASSWORD }} | |
MARIADB_DATABASE: ${{ env.MARIADB_DB }} | |
MARIADB_USER: ${{ env.MARIADB_USER }} | |
MARIADB_PASSWORD: ${{ env.MARIADB_PASSWORD }} | |
ports: | |
- 3306:3306 | |
options: >- | |
--health-cmd="mysqladmin ping" | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=3 | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Copy .env | |
run: php -r "file_exists('.env') || copy('.env.example', '.env');" | |
- name: Install Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Generate key | |
run: php artisan key:generate | |
- name: Directory Permissions | |
run: chmod -R 777 storage bootstrap/cache | |
- name: Install js dependency | |
run: npm ci | |
- name: Build assets | |
run: npm run build | |
- name: Analyse | |
run: ./vendor/bin/phpstan analyse --error-format=github --no-progress | |
- name: Execute tests (Unit and Feature tests) via Artisan command | |
env: | |
DB_DATABASE: ${{ env.MARIADB_DB }} | |
DB_USERNAME: ${{ env.MARIADB_USER }} | |
DB_PASSWORD: ${{ env.MARIADB_PASSWORD }} | |
run: php artisan test |