Add justfile task runner

Recipes: check (lint+test+tape-test), lint, test, tape-test, record.
`just` with no args lists all recipes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthias Johnson 2026-03-02 01:46:14 -07:00
parent b72a95f4ed
commit 4413f2229d
2 changed files with 34 additions and 0 deletions

View file

@ -239,6 +239,15 @@ After cloning, enable the pre-commit hook (runs ShellCheck + tests):
git config core.hooksPath .githooks
```
Common tasks via [`just`](https://github.com/casey/just):
```bash
just check # lint + unit tests + tape tests
just test # unit tests only
just lint # ShellCheck only
just record # re-record demo GIFs with VHS
```
## FAQ