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
7 changes: 5 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@ ENTRYPOINT ["/bin/node"]
- Builds and publishes to Docker Hub and GitHub Container Registry
- Tags with version, major version, and "current"

### checkshell.yml
### linting.yml

- Validates shell script formatting with shfmt
- Runs on all pull requests
- Validates shell script formatting with shfmt (direct binary, not Docker)
- Runs shellcheck for shell script linting
- Runs markdownlint-cli2 for Markdown linting

## Scripts

Expand Down Expand Up @@ -80,6 +82,7 @@ Checks for new Node.js versions to build:

## Code Quality

- **Workflow Security:** All workflows under `.github/` must pass a [zizmor](https://docs.zizmor.sh/) audit (`zizmor .github/workflows/`) with no unsuppressed findings before merging
- **Linting & Formatting:** Enforced via Docker-based pre-commit hooks
- **Pre-commit hooks:** `.pre-commit-config.yaml` enforces checks locally before commit using Docker
- shellcheck on all `.sh` and `.bats` files (shell script linting)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A minimal Docker image with just Node.js.

## Use the Docker Hub Image

This image is published to the GitHub Container Registry:
This image is published to Docker Hub:

<https://hub.docker.com/r/chorrell/node-minimal>

Expand Down