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
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,19 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Install ShellCheck
env:
SHELLCHECK_VERSION: 0.11.0
SHELLCHECK_SHA256: 8c3be12b05d5c177a04c29e3c78ce89ac86f1595681cab149b65b97c4e227198
run: |
archive="$RUNNER_TEMP/shellcheck.tar.xz"
curl --fail --silent --show-error --location \
--output "$archive" \
"https://github.com/koalaman/shellcheck/releases/download/v${SHELLCHECK_VERSION}/shellcheck-v${SHELLCHECK_VERSION}.linux.x86_64.tar.xz"
echo "${SHELLCHECK_SHA256} ${archive}" | sha256sum --check --strict
tar --extract --xz --file "$archive" --directory "$RUNNER_TEMP"
echo "$RUNNER_TEMP/shellcheck-v${SHELLCHECK_VERSION}" >> "$GITHUB_PATH"

- name: Check formatting
run: npm run fmt:check

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,12 @@ This means any `kiro-cli` pane can be discovered and switched to without naming

If you edit this repo outside `~/.tmux/plugins/coding-agents-tmux`, tmux will still be using the TPM-installed copy until you sync it.

Local development requires ShellCheck. On macOS, install it with Homebrew:

```bash
brew install shellcheck
```

Useful commands:

```bash
Expand Down
Loading
Loading