-
Notifications
You must be signed in to change notification settings - Fork 2
Git hooks
Dmitry Usik edited this page Mar 30, 2021
·
3 revisions
In order to check the code hygiene before git actions, git hooks are implemented. It uses husky and lint-staged under the hood.
Hook | Action |
---|---|
pre-commit |
lint-staged |
pre-push |
yarn verify |
Script | Description |
---|---|
verify |
Compiles typescript files, runs the linter and executes unit tests. |