We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 556ad3a commit 8c0f732Copy full SHA for 8c0f732
.github/workflows/ci.yml
@@ -20,6 +20,8 @@ jobs:
20
steps:
21
- name: Checkout
22
uses: actions/checkout@v4
23
+ with:
24
+ fetch-depth: 0
25
26
- name: Collect Workflow Telemetry
27
uses: catchpoint/workflow-telemetry-action@v2
@@ -41,6 +43,9 @@ jobs:
41
43
- name: Install dependencies
42
44
run: yarn install --immutable --inline-builds
45
46
+ - name: Validate PR commits with commitlint
47
+ run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
48
+
49
- name: Format
50
run: yarn format-check
51
0 commit comments