Skip to content

Commit 3bcfa04

Browse files
committed
ci(build): check for diffs when building integrations
1 parent 70d2784 commit 3bcfa04

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/actions/build-angular/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ runs:
4646
run: npm run build
4747
shell: bash
4848
working-directory: ./angular
49+
- name: Check Diff
50+
run: git diff --exit-code
51+
shell: bash
52+
working-directory: ./angular
4953
- uses: ./.github/workflows/actions/upload-archive
5054
with:
5155
name: ionic-angular

.github/workflows/actions/build-react/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ runs:
3939
run: npm run test.spec
4040
shell: bash
4141
working-directory: ./packages/react
42+
- name: Check Diff
43+
run: git diff --exit-code
44+
shell: bash
45+
working-directory: ./packages/react
4246
- uses: ./.github/workflows/actions/upload-archive
4347
with:
4448
name: ionic-react

.github/workflows/actions/build-vue/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ runs:
3535
run: npm run build
3636
shell: bash
3737
working-directory: ./packages/vue
38+
- name: Check Diff
39+
run: git diff --exit-code
40+
shell: bash
41+
working-directory: ./packages/vue
3842
- uses: ./.github/workflows/actions/upload-archive
3943
with:
4044
name: ionic-vue

0 commit comments

Comments
 (0)