fix: CI to include lint and format along with build (#7482)

* fix(lint): get ci passing again

* chore(ci): run lint before build

* chore(ci): exclude web app from build check for now

The web app takes too long and causes CI to timeout. Once we
improve we will reintroduce.

* fix: formating of files

* fix: adding format to ci

---------

Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
This commit is contained in:
Aaron Heckmann 2025-08-18 08:57:16 -07:00 committed by GitHub
parent b194089fec
commit d8f58d28ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
236 changed files with 426 additions and 471 deletions

View file

@ -1 +1 @@
export * from "./avatar";
export * from "./avatar";

View file

@ -74,4 +74,4 @@ Dialog.Trigger = DialogTrigger;
Dialog.Panel = DialogPanel;
Dialog.Title = DialogTitle;
export { Dialog, DialogTitle, DialogTrigger, DialogPanel };
export { Dialog, DialogTitle, DialogTrigger, DialogPanel };

View file

@ -55,4 +55,4 @@ export const TabList: FC<TTabListProps> = ({ tabs, tabListClassName, tabClassNam
<BaseTabs.Indicator className="absolute left-0 top-[50%] z-[-1] h-6 w-[var(--active-tab-width)] translate-x-[var(--active-tab-left)] -translate-y-[50%] rounded-sm bg-custom-background-100 shadow-sm transition-[width,transform] duration-200 ease-in-out" />
</BaseTabs.List>
);
);

View file

@ -88,4 +88,4 @@ export const Tabs: FC<TTabsProps> = (props: TTabsProps) => {
))}
</BaseTabs.Root>
);
};
};