diff options
Diffstat (limited to '.husky/commit-msg')
| -rw-r--r-- | .husky/commit-msg | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/.husky/commit-msg b/.husky/commit-msg index 36158d9..1fe054a 100644 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1 +1,12 @@ -npx --no-install commitlint --edit "$1"
\ No newline at end of file +npx --no-install commitlint --edit "$1" + +case "$1" in + *"[skip ci]"*) + echo "Found [skip ci]" + exit 0 + ;; + *) + echo "No [skip ci] found" + npm test + ;; +esac
\ No newline at end of file |
