Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .github/workflows/commit-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v6
Expand All @@ -33,14 +31,7 @@ jobs:
- name: Install dependencies
run: npm install --ignore-scripts

- name: Lint commits
if: github.event.action != 'edited'
env:
FROM_SHA: ${{ github.event.pull_request.base.sha }}
TO_SHA: ${{ github.event.pull_request.head.sha }}
run: npx commitlint --from "$FROM_SHA" --to "$TO_SHA" --verbose

- name: Lint PR title (squash-merge path)
- name: Lint PR title
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: printf '%s\n' "$PR_TITLE" | npx commitlint --verbose
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ On a fresh macOS machine, install the prerequisites in this order:
3. Run the NemoClaw installer.

This avoids the two most common first-run failures on macOS:

- missing developer tools needed by the installer and Node.js toolchain
- Docker connection errors when no supported container runtime is installed or running

Expand Down
Loading