Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 682345f

Browse files
committed
fix(actions): checkout depth set to 0
1 parent ea7d940 commit 682345f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,14 @@ jobs:
2222
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
2323

2424
steps:
25-
- uses: actions/checkout@v2
26-
# - uses: wagoid/commitlint-github-action@v2
27-
# with:
28-
# configFile: .commitlintrc.js
25+
- name: checkout
26+
uses: actions/checkout@v2
27+
with:
28+
fetch-depth: 0
29+
- name: linst commit messages
30+
uses: wagoid/commitlint-github-action@v2
31+
with:
32+
configFile: .commitlintrc.js
2933
- name: Set up Elixir and OTP
3034
uses: actions/setup-elixir@v1
3135
with:

0 commit comments

Comments
 (0)