File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,9 @@ jobs:
136136 continue-on-error : true
137137 run : npm run lint
138138
139+ - name : Test
140+ run : npm run test:ci
141+
139142 - name : Build
140143 run : npm run build
141144
Original file line number Diff line number Diff line change @@ -12,7 +12,11 @@ const defaultMarkedExtension: MarkedExtension = {
1212
1313/**
1414 * Helper class to build or conveniently use a markdown parser.
15+ *
16+ * - Use `Markdown.create` to extend or customize parsing functionality.
17+ * - Use `Markdown.parse` to conveniently parse markdown to safe html.
1518 */
19+ // eslint-disable-next-line @typescript-eslint/no-extraneous-class
1620export class Markdown {
1721 private static instance = Markdown . create ( ) ;
1822
Original file line number Diff line number Diff line change 2323 "serve" : " serve dist/nuxt-custom-elements/unraid-components" ,
2424 "codegen" : " graphql-codegen --config codegen.ts -r dotenv/config" ,
2525 "codegen:watch" : " graphql-codegen --config codegen.ts --watch -r dotenv/config" ,
26- "test" : " vitest"
26+ "test" : " vitest" ,
27+ "test:ci" : " vitest run"
2728 },
2829 "devDependencies" : {
2930 "@graphql-codegen/cli" : " ^5.0.2" ,
You can’t perform that action at this time.
0 commit comments