Replies: 1 comment 5 replies
-
Hi, Most monorepo tools have a way to run tasks only in changed workspaces. Add husky at the root of the project, create a |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone!
I am working on a project that has multiple micro-frontends based on AngularJS. They are all in the same repository and separated by specific folders.
So the project structure looks like this:
Root
-> micro_frontend_1
-> micro_frontend_2
-> micro_fronend_3
What I want to achieve is the following:
When I do a commit I want to run
ng test
in the directories where I made changes. So not in all folders but only where I made changes.I know I can specify the pre-commit hook to check for specific file types. But is it also possible to something like I mentioned?
Beta Was this translation helpful? Give feedback.
All reactions