We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aec1bd commit e4cba74Copy full SHA for e4cba74
.github/workflows/nodejs.yml
@@ -36,6 +36,10 @@ jobs:
36
run: npm run lint:i18n
37
- name: Build Lib
38
run: npm run build:lib
39
+ - name: Build Schematics
40
+ run: npm run build:schematics
41
+ - name: Build Migrations
42
+ run: npm run build:migration
43
- name: Build TypeDoc & SassDoc
44
run: |
45
npm run build:typedoc:en:production
azure-pipelines.yml
@@ -20,6 +20,12 @@ steps:
20
- script: npm run build:lib
21
displayName: 'Build source code and styles'
22
23
+- script: npm run build:schematics
24
+ displayName: 'Build schematics'
25
+
26
+- script: npm run build:migration
27
+ displayName: 'Build migrations'
28
29
- script: npm run build:typedoc:en:production
30
displayName: 'Build typedoc EN'
31
0 commit comments