Skip to content

Commit e280412

Browse files
committed
ci: add step to validate the dist folder content
Signed-off-by: Ulises Gascón <[email protected]>
1 parent ea0d84f commit e280412

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/code_health.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,8 @@ jobs:
2828
run: npm run test:coverage
2929

3030
- name: Build
31-
run: npm run build
31+
run: npm run build
32+
33+
- name: Check dist directory
34+
run: |
35+
git diff --quiet --exit-code dist/ || (echo "You need to include the changes in the dist folder, execute: npm run build and commit the changes in the dist folder" && exit 1)

0 commit comments

Comments
 (0)