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:
parent
b194089fec
commit
d8f58d28ed
236 changed files with 426 additions and 471 deletions
|
|
@ -4,8 +4,8 @@ import React, { FC, useEffect } from "react";
|
|||
import { Intercom, show, hide, onHide } from "@intercom/messenger-js-sdk";
|
||||
import { observer } from "mobx-react";
|
||||
// store hooks
|
||||
import { useUser } from "@/hooks/store/user"
|
||||
import { useInstance } from "@/hooks/store/use-instance"
|
||||
import { useUser } from "@/hooks/store/user";
|
||||
import { useInstance } from "@/hooks/store/use-instance";
|
||||
import { useTransient } from "@/hooks/store/use-transient";
|
||||
|
||||
export type IntercomProviderProps = {
|
||||
|
|
|
|||
|
|
@ -12,8 +12,8 @@ import { GROUP_WORKSPACE_TRACKER_EVENT } from "@plane/constants";
|
|||
import { getUserRole } from "@plane/utils";
|
||||
// hooks
|
||||
import { captureClick, joinEventGroup } from "@/helpers/event-tracker.helper";
|
||||
import { useWorkspace } from "@/hooks/store/use-workspace"
|
||||
import { useUser, useUserPermissions } from "@/hooks/store/user"
|
||||
import { useWorkspace } from "@/hooks/store/use-workspace";
|
||||
import { useUser, useUserPermissions } from "@/hooks/store/user";
|
||||
import { useInstance } from "@/hooks/store/use-instance";
|
||||
// dynamic imports
|
||||
const PostHogPageView = dynamic(() => import("@/lib/posthog-view"), { ssr: false });
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import { LogoSpinner } from "@/components/common/logo-spinner";
|
|||
// helpers
|
||||
import { EPageTypes } from "@/helpers/authentication.helper";
|
||||
// hooks
|
||||
import { useUser, useUserProfile, useUserSettings } from "@/hooks/store/user"
|
||||
import { useUser, useUserProfile, useUserSettings } from "@/hooks/store/user";
|
||||
import { useWorkspace } from "@/hooks/store/use-workspace";
|
||||
import { useAppRouter } from "@/hooks/use-app-router";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue