diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 61efca70..b5416fd5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,6 +31,10 @@ jobs: node-version: '22' cache: 'npm' + - name: Install Composer Dependencies + run: | + composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist + - name: Install Node Dependencies run: npm ci diff --git a/package.json b/package.json index 11a63af2..2f865387 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "type": "module", "scripts": { - "build": "vite build", + "build": "tsc && vite build", "build:ssr": "vite build && vite build --ssr", "dev": "vite", "format": "prettier --write resources/", diff --git a/resources/js/pages/auth/login.tsx b/resources/js/pages/auth/login.tsx index 0c329cd7..a3f17616 100644 --- a/resources/js/pages/auth/login.tsx +++ b/resources/js/pages/auth/login.tsx @@ -10,11 +10,11 @@ import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; import AuthLayout from '@/layouts/auth-layout'; -interface LoginForm { +type LoginForm = { email: string; password: string; remember: boolean; -} +}; interface LoginProps { status?: string; diff --git a/resources/js/pages/auth/register.tsx b/resources/js/pages/auth/register.tsx index 39fd4117..8dc8393c 100644 --- a/resources/js/pages/auth/register.tsx +++ b/resources/js/pages/auth/register.tsx @@ -9,12 +9,12 @@ import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; import AuthLayout from '@/layouts/auth-layout'; -interface RegisterForm { +type RegisterForm = { name: string; email: string; password: string; password_confirmation: string; -} +}; export default function Register() { const { data, setData, post, processing, errors, reset } = useForm({ diff --git a/resources/js/pages/auth/reset-password.tsx b/resources/js/pages/auth/reset-password.tsx index 220d2ff9..34e8d85a 100644 --- a/resources/js/pages/auth/reset-password.tsx +++ b/resources/js/pages/auth/reset-password.tsx @@ -13,12 +13,12 @@ interface ResetPasswordProps { email: string; } -interface ResetPasswordForm { +type ResetPasswordForm = { token: string; email: string; password: string; password_confirmation: string; -} +}; export default function ResetPassword({ token, email }: ResetPasswordProps) { const { data, setData, post, processing, errors, reset } = useForm({ diff --git a/resources/js/pages/welcome.tsx b/resources/js/pages/welcome.tsx index 0ba2dc51..8a3fe6af 100644 --- a/resources/js/pages/welcome.tsx +++ b/resources/js/pages/welcome.tsx @@ -1,5 +1,6 @@ import { type SharedData } from '@/types'; import { Head, Link, usePage } from '@inertiajs/react'; +import { Property } from 'csstype'; export default function Welcome() { const { auth } = usePage().props; @@ -218,7 +219,7 @@ export default function Welcome() { />