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

@ -8,9 +8,9 @@ import {
} from "@/components/workspace/sidebar/favorites/favorite-items/common";
// helpers
// hooks
import { useProject } from "@/hooks/store/use-project"
import { useProjectView } from "@/hooks/store/use-project-view"
import { useCycle } from "@/hooks/store/use-cycle"
import { useProject } from "@/hooks/store/use-project";
import { useProjectView } from "@/hooks/store/use-project-view";
import { useCycle } from "@/hooks/store/use-cycle";
import { useModule } from "@/hooks/store/use-module";
// plane web hooks
import { EPageStoreType, usePage } from "@/plane-web/hooks/store";

View file

@ -1,6 +1,6 @@
import { useCallback } from "react";
import { format } from "date-fns";
import { useProject } from "@/hooks/store/use-project"
import { useProject } from "@/hooks/store/use-project";
import { useUser } from "@/hooks/store/user";
export const useTimeZoneConverter = (projectId: string) => {