diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8e02fe76..1dd46e1a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,6 +33,12 @@ jobs: - name: Install dependencies run: npm install --legacy-peer-deps + - name: Lint + run: npm run lint + + - name: Typecheck + run: npm run typecheck + - name: Test run: npm run test diff --git a/src/plugins/core/index.ts b/src/plugins/core/index.ts index 42013564..7e2ae5cf 100644 --- a/src/plugins/core/index.ts +++ b/src/plugins/core/index.ts @@ -70,7 +70,7 @@ import { CodeBlockEditorDescriptor } from '../codeblock' import { comment, commentFromMarkdown } from '../../mdastUtilHtmlComment' import { lexicalTheme } from '../../styles/lexicalTheme' import { FORMAT } from '../../FormatConstants' -import { IconKey } from '../../IconKey' +import { IconKey } from '../../defaultSvgIcons' export * from './MdastHTMLNode' export * from './GenericHTMLNode'