File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -125,17 +125,21 @@ workflows:
125
125
## GitLab CI
126
126
127
127
` ` ` yaml
128
- stages : ['lint', 'build', 'test']
129
128
lint:commit :
130
129
image : registry.hub.docker.com/library/node:alpine
131
- stage : lint
130
+ variables :
131
+ GIT_DEPTH : 0
132
132
before_script :
133
133
- apk add --no-cache git
134
134
- npm install --save-dev @commitlint/config-conventional @commitlint/cli
135
135
script :
136
136
- echo "${CI_COMMIT_MESSAGE}" | npx commitlint
137
137
` ` `
138
138
139
+ GitLab limits ` git clone` depth to
140
+ [20 commits by default](https://docs.gitlab.com/ee/ci/pipelines/settings.html#limit-the-number-of-changes-fetched-during-clone).
141
+ Setting `GIT_DEPTH : 0` removes this limitation, so `commitlint` can check larger MRs.
142
+
139
143
# # GitLab CI with pre-build container
140
144
141
145
` ` ` yaml
@@ -189,4 +193,4 @@ workflows:
189
193
190
194
> [!TIP]
191
195
> Help yourself adopting a commit convention by using an interactive commit prompt.
192
- > Learn how to use ` @commitlint/prompt-cli` in the [Use prompt guide](/> guides/use-prompt)
196
+ > Learn how to use `@commitlint/prompt-cli` in the [Use prompt guide](/guides/use-prompt).
You can’t perform that action at this time.
0 commit comments