diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 485e0839..e1d3659e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,12 +31,6 @@ jobs: node-version: '22' cache: 'npm' - - name: Install Node Dependencies - run: npm ci - - - name: Build Assets - run: npm run build - - name: Install Dependencies run: composer install --no-interaction --prefer-dist --optimize-autoloader @@ -46,5 +40,14 @@ jobs: - name: Generate Application Key run: php artisan key:generate + - name: Install Node Dependencies + run: npm ci + + - name: Validate typescript + run: npm run type:check + + - name: Build Assets + run: npm run build + - name: Tests run: ./vendor/bin/phpunit diff --git a/package.json b/package.json index 20229aa1..dcd0b71e 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "format": "prettier --write resources/", "format:check": "prettier --check resources/", "lint": "eslint . --fix", - "types": "tsc --noEmit" + "type:check": "tsc --noEmit" }, "devDependencies": { "@eslint/js": "^9.19.0", diff --git a/resources/js/pages/auth/reset-password.tsx b/resources/js/pages/auth/reset-password.tsx index 8ea53031..40b770ea 100644 --- a/resources/js/pages/auth/reset-password.tsx +++ b/resources/js/pages/auth/reset-password.tsx @@ -8,11 +8,6 @@ import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; import AuthLayout from '@/layouts/auth-layout'; -interface ResetPasswordProps { - token: string; - email: string; -} - type ResetPasswordForm = { token: string; email: string; @@ -20,6 +15,12 @@ type ResetPasswordForm = { password_confirmation: string; }; +interface ResetPasswordProps { + token: string; + email: string; +} + + export default function ResetPassword({ token, email }: ResetPasswordProps) { const { data, setData, post, processing, errors, reset } = useForm>({ token: token, diff --git a/resources/js/pages/settings/profile.tsx b/resources/js/pages/settings/profile.tsx index 61cdda0a..fefcc64a 100644 --- a/resources/js/pages/settings/profile.tsx +++ b/resources/js/pages/settings/profile.tsx @@ -19,10 +19,10 @@ const breadcrumbs: BreadcrumbItem[] = [ }, ]; -interface ProfileForm { +type ProfileForm = { name: string; email: string; -} +}; export default function Profile({ mustVerifyEmail, status }: { mustVerifyEmail: boolean; status?: string }) { const { auth } = usePage().props; diff --git a/resources/js/pages/welcome.tsx b/resources/js/pages/welcome.tsx index 3f3afc1b..e936f324 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,8 +219,7 @@ export default function Welcome() { />