LunarVim/utils/ci/run_commitlint.sh
chaesngmin 346925fcdc
feat: add commitlint CI (#1459)
Co-authored-by: kylo252 <59826753+kylo252@users.noreply.github.com>
2021-09-30 07:44:35 +02:00

10 lines
331 B
Bash

#!/usr/bin/env bash
set -eo pipefail
REPO_DIR="$(git rev-parse --show-toplevel)"
HELP_URL="https://github.com/LunarVim/LunarVim/blob/rolling/CONTRIBUTING.md#commit-messages"
CONFIG="$REPO_DIR/.github/workflows/commitlint.config.js"
if ! npx commitlint --edit --verbose --help-url "$HELP_URL" --config "$CONFIG"; then
exit 1
fi