JHipster Lite ⚡ is a development platform to generate, develop & deploy modern web applications & microservices architecture, step by step - using Hexagonal Architecture :gem:
We need to improve our CI to allow adding new config.
The workflow should be:
If the app already exists in main branch:
- get md5sum of app in main branch
- get md5sum of app in pull request branch
- compare
- if it's the same value, stop the CI
- if it's a different value, launch tests
If the app doesn't exist in main branch
- get md5sum of app in main branch, not exist
- no need to get md5sum of app in pull request branch
- nothing to compare, launch tests
Following discussion in
We need to improve our CI to allow adding new config. The workflow should be: