diff --git a/.husky/commit-msg b/.husky/commit-msg index 60cd73da..6811cd98 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,5 +1,8 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" +# skip in CI +[ -n "$CI" ] && exit 0 + # lint commit message -yarn commitlint --edit $1 \ No newline at end of file +yarn commitlint --edit $1