From 998ac564a4b4d2aa6886b7437ece07022c958f45 Mon Sep 17 00:00:00 2001 From: Pushpak Chhajed Date: Mon, 9 Dec 2024 18:29:55 +0530 Subject: [PATCH] fix: ci issues --- .github/workflows/ci.yaml | 2 +- app/Providers/FortifyServiceProvider.php | 2 +- bootstrap/app.php | 2 +- config/sentry.php | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e296193..ac7d0db 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,4 @@ -name: Tests +name: CI on: push: diff --git a/app/Providers/FortifyServiceProvider.php b/app/Providers/FortifyServiceProvider.php index 03297f5..89cf770 100644 --- a/app/Providers/FortifyServiceProvider.php +++ b/app/Providers/FortifyServiceProvider.php @@ -51,7 +51,7 @@ public function boot(): void private function configureLoginView(): void { - Fortify::loginView(fn() => Inertia::render('Auth/Login', [ + Fortify::loginView(fn () => Inertia::render('Auth/Login', [ 'availableOauthProviders' => (new ActiveOauthProviderAction())->handle(), 'canResetPassword' => Route::has('password.request'), 'status' => session('status'), diff --git a/bootstrap/app.php b/bootstrap/app.php index cb686f2..33d3624 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -2,12 +2,12 @@ declare(strict_types=1); +use Sentry\Laravel\Integration; use Illuminate\Foundation\Application; use App\Http\Middleware\HandleInertiaRequests; use Illuminate\Foundation\Configuration\Exceptions; use Illuminate\Foundation\Configuration\Middleware; use Illuminate\Http\Middleware\AddLinkHeadersForPreloadedAssets; -use Sentry\Laravel\Integration; return Application::configure(basePath: dirname(__DIR__)) ->withRouting( diff --git a/config/sentry.php b/config/sentry.php index b159b0a..7974ad4 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -1,5 +1,7 @@