Skip to content

Commit e4cba74

Browse files
committed
ci(schematics): build schematics & migrations in the CI
1 parent 8aec1bd commit e4cba74

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ jobs:
3636
run: npm run lint:i18n
3737
- name: Build Lib
3838
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
3943
- name: Build TypeDoc & SassDoc
4044
run: |
4145
npm run build:typedoc:en:production

azure-pipelines.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ steps:
2020
- script: npm run build:lib
2121
displayName: 'Build source code and styles'
2222

23+
- script: npm run build:schematics
24+
displayName: 'Build schematics'
25+
26+
- script: npm run build:migration
27+
displayName: 'Build migrations'
28+
2329
- script: npm run build:typedoc:en:production
2430
displayName: 'Build typedoc EN'
2531

0 commit comments

Comments
 (0)