debug(ci): split QA into individual lint/typecheck/test steps with individual Gotify breadcrumbs
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🧪 QA (push) Failing after 1m53s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-03-01 23:36:54 +01:00
parent cb6f133e0c
commit e2d68c2828
5 changed files with 370 additions and 359 deletions

View File

@@ -3,11 +3,9 @@
import React, { useState, useEffect } from "react";
import { useDocumentInfo } from "@payloadcms/ui";
import { toast } from "@payloadcms/ui";
import { useRouter } from "next/navigation";
export const AiAnalyzeButton: React.FC = () => {
const { id, title } = useDocumentInfo();
const router = useRouter();
const { id } = useDocumentInfo();
const [isAnalyzing, setIsAnalyzing] = useState(false);
const [hasWebsite, setHasWebsite] = useState(false);