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
|
|
@ -2,5 +2,5 @@
|
|||
.vercel
|
||||
.tubro
|
||||
out/
|
||||
dis/
|
||||
build/
|
||||
dist/
|
||||
build/
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@ import { Node as ProseMirrorNode, ResolvedPos } from "@tiptap/pm/model";
|
|||
import { CellSelection, TableMap, updateColumnsOnResize } from "@tiptap/pm/tables";
|
||||
import { Decoration, NodeView } from "@tiptap/pm/view";
|
||||
import { h } from "jsx-dom-cjs";
|
||||
import { icons } from "src/core/extensions/table/table/icons";
|
||||
import tippy, { Instance, Props } from "tippy.js";
|
||||
import { CORE_EXTENSIONS } from "@/constants/extension";
|
||||
import { icons } from "./icons";
|
||||
import { isCellSelection } from "./utilities/helpers";
|
||||
|
||||
type ToolboxItem = {
|
||||
|
|
@ -146,7 +146,7 @@ const columnsToolboxItems: ToolboxItem[] = [
|
|||
{
|
||||
label: "Pick color",
|
||||
icon: "", // No icon needed for color picker
|
||||
action: (_args: unknown) => { }, // Placeholder action; actual color picking is handled in `createToolbox`
|
||||
action: (_args: unknown) => {}, // Placeholder action; actual color picking is handled in `createToolbox`
|
||||
},
|
||||
{
|
||||
label: "Delete column",
|
||||
|
|
@ -174,7 +174,7 @@ const rowsToolboxItems: ToolboxItem[] = [
|
|||
{
|
||||
label: "Pick color",
|
||||
icon: "",
|
||||
action: (_args: unknown) => { }, // Placeholder action; actual color picking is handled in `createToolbox`
|
||||
action: (_args: unknown) => {}, // Placeholder action; actual color picking is handled in `createToolbox`
|
||||
},
|
||||
{
|
||||
label: "Delete row",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue