Skip to content

Bump vite from 5.4.9 to 6.0.0 #1492

Bump vite from 5.4.9 to 6.0.0

Bump vite from 5.4.9 to 6.0.0 #1492

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: xdebug
- name: Start database
run: sudo /etc/init.d/mysql start
- name: Create database
run: mysql -e "CREATE DATABASE IF NOT EXISTS liberu;" -uroot -proot
- name: Copy environment file
run: cp .env.testing .env
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader
- name: Generate application key
run: php artisan key:generate
- name: Run database migrations
run: php artisan migrate --force
- name: Run tests with coverage
run: vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true