Skip to content

Merge pull request #52 from Simounet/dependabot/npm_and_yarn/vitepres… #162

Merge pull request #52 from Simounet/dependabot/npm_and_yarn/vitepres…

Merge pull request #52 from Simounet/dependabot/npm_and_yarn/vitepres… #162

Workflow file for this run

name: Laravel
on:
push:
branches:
- '*'
pull_request:
branches: [ "master" ]
jobs:
laravel-tests:
runs-on: ubuntu-latest
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- uses: actions/checkout@v4
- name: Copy .env
run: cd backend && php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: cd backend && composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
run: cd backend && php artisan key:generate
- name: Directory Permissions
run: cd backend && chmod -R 777 storage bootstrap/cache
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: ':memory:'
run: cd backend && php artisan test --parallel