diff --git a/.gitea/workflows/laravel.yml b/.gitea/workflows/laravel.yml new file mode 100644 index 0000000..43a8da0 --- /dev/null +++ b/.gitea/workflows/laravel.yml @@ -0,0 +1,42 @@ +name: Laravel + +on: + push: + branches: ["main"] + +jobs: + laravel-tests: + runs-on: ubuntu-latest + + steps: + - uses: shivammathur/setup-php@v2 + with: + php-version: "8.2" + - uses: actions/checkout@v3 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-interaction --no-progress --prefer-dist + - name: Generate key + run: php artisan key:generate + - name: Directory Permissions + run: chmod -R 777 storage bootstrap/cache + - name: Create Database + run: | + mkdir -p database + touch database/database.sqlite + - name: Execute tests (Unit and Feature tests) via PHPUnit + env: + DB_CONNECTION: sqlite + DB_DATABASE: database/database.sqlite + run: vendor/bin/phpunit + - name: Install Node.js + uses: actions/setup-node@v2 + with: + node-version: "16.x" + - name: Install dependencies + run: npm ci + - name: Run Vue tests + env: + LARAVEL_BYPASS_ENV_CHECK: "1" + run: npm run test