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
48 changes: 27 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,44 @@
name: CI - Test and Validate
name: CI

Check warning on line 1 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / quality / common

1:1 [document-start] missing document start "---"

on:

Check warning on line 3 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / quality / common

3:1 [truthy] truthy value should be one of [false, true]
pull_request:
workflow_call:
inputs:
run-security:
type: boolean
default: true
run-release:
type: boolean
default: true

permissions:
contents: read
security-events: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
security-and-standards:
uses: wphillipmoore/standard-actions/.github/workflows/ci-security.yml@v1.4
quality:
uses: wphillipmoore/standard-actions/.github/workflows/ci-quality.yml@v1.5
with:
language: shell
versions: '["latest"]'
container-suffix: base

security:
uses: wphillipmoore/standard-actions/.github/workflows/ci-security.yml@v1.5
with:
language: shell
run-codeql: false
run-standards: ${{ inputs.run-release || true }}
run-security: ${{ inputs.run-security || true }}
permissions:
contents: read
security-events: write

release:
uses: wphillipmoore/standard-actions/.github/workflows/ci-release.yml@v1.5
with:
language: shell
run-codeql: 'false'

shellcheck:
name: "ci: shellcheck"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6

- name: Run shellcheck
run: |
files=$(find scripts -type f \( -name '*.sh' -o -path '*/git-hooks/*' \) | sort)
if [ -n "$files" ]; then
echo "$files" | xargs shellcheck
else
echo "No shell scripts found."
fi
run-release: ${{ inputs.run-release != false }}
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish release

Check warning on line 1 in .github/workflows/publish.yml

View workflow job for this annotation

GitHub Actions / quality / common

1:1 [document-start] missing document start "---"

on:

Check warning on line 3 in .github/workflows/publish.yml

View workflow job for this annotation

GitHub Actions / quality / common

3:1 [truthy] truthy value should be one of [false, true]
push:
Expand All @@ -11,7 +11,8 @@

jobs:
publish:
uses: wphillipmoore/standard-actions/.github/workflows/publish-release.yml@v1.4
# yamllint disable-line rule:line-length
uses: wphillipmoore/standard-actions/.github/workflows/publish-release.yml@v1.5
permissions:
contents: write
pull-requests: write
Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ This is a documentation-only repository. There are no build or test commands.
git config core.hooksPath ../standard-tooling/scripts/lib/git-hooks # Enable git hooks
```

Standard-tooling CLI tools (`st-commit`, `st-validate-local`, etc.) are
Standard-tooling CLI tools (`st-commit`, `st-validate`, etc.) are
pre-installed in the dev container images. No local setup required.

### Validation

```bash
markdownlint . # Lint all Markdown files
st-docker-run -- st-validate # Full validation (runs in dev container)
```

## Architecture
Expand Down
4 changes: 3 additions & 1 deletion docs/site/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
site_name: mq-rest-admin-common
site_url: https://wphillipmoore.github.io/mq-rest-admin-common/
site_description: Shared documentation fragments and canonical mapping data for the mq-rest-admin project family
site_description: >-
Shared documentation fragments and canonical mapping data
for the mq-rest-admin project family
repo_url: https://github.com/wphillipmoore/mq-rest-admin-common
repo_name: mq-rest-admin-common
edit_uri: ""
Expand Down
5 changes: 0 additions & 5 deletions scripts/dev/audit.sh

This file was deleted.

13 changes: 0 additions & 13 deletions scripts/dev/lint.sh

This file was deleted.

5 changes: 0 additions & 5 deletions scripts/dev/test.sh

This file was deleted.

Loading