From 6009299e195615957e0cdce6167f1d726e8fd283 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <230051081+jmiller-moko@users.noreply.github.com> Date: Thu, 18 Dec 2025 17:26:39 -0600 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 112 +++++++++++++++++++-------------------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae9fb84..23f9473 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,69 +31,69 @@ name: CI on: - push: - branches: - - main - - dev - - "dev/*" - pull_request: - workflow_dispatch: + push: + branches: + - main + - dev + - "dev/*" + pull_request: + workflow_dispatch: permissions: - contents: read - issues: write + contents: read + issues: write jobs: - ci: - name: Standards CI Validation - runs-on: ubuntu-latest + ci: + name: Standards CI Validation + runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 + steps: + - name: Checkout repository + uses: actions/checkout@v4 - - name: Validate file paths - shell: bash - run: | - set -euo pipefail - if [ -x "./scripts/validate_paths.sh" ]; then - ./scripts/validate_paths.sh - else - echo "validate_paths.sh not present, skipping" - fi + - name: Validate file paths + shell: bash + run: | + set -euo pipefail + if [ -x "./scripts/validate_paths.sh" ]; then + ./scripts/validate_paths.sh + else + echo "validate_paths.sh not present, skipping" + fi - - name: Validate tabs usage - shell: bash - run: | - set -euo pipefail - if [ -x "./scripts/validate_tabs.sh" ]; then - ./scripts/validate_tabs.sh - else - echo "validate_tabs.sh not present, skipping" - fi + - name: Validate tabs usage + shell: bash + run: | + set -euo pipefail + if [ -x "./scripts/validate_tabs.sh" ]; then + ./scripts/validate_tabs.sh + else + echo "validate_tabs.sh not present, skipping" + fi - - name: Validate CHANGELOG governance - shell: bash - run: | - set -euo pipefail - if [ -x "./scripts/validate_changelog.sh" ]; then - ./scripts/validate_changelog.sh - else - echo "validate_changelog.sh not present, skipping" - fi + - name: Validate CHANGELOG governance + shell: bash + run: | + set -euo pipefail + if [ -x "./scripts/validate_changelog.sh" ]; then + ./scripts/validate_changelog.sh + else + echo "validate_changelog.sh not present, skipping" + fi - - name: Validate Joomla manifests - shell: bash - run: | - set -euo pipefail - if [ -x "./scripts/validate_manifest.sh" ]; then - ./scripts/validate_manifest.sh - else - echo "validate_manifest.sh not present, skipping" - fi + - name: Validate Joomla manifests + shell: bash + run: | + set -euo pipefail + if [ -x "./scripts/validate_manifest.sh" ]; then + ./scripts/validate_manifest.sh + else + echo "validate_manifest.sh not present, skipping" + fi - - name: CI completion - shell: bash - run: | - set -euo pipefail - echo "CI checks completed successfully" + - name: CI completion + shell: bash + run: | + set -euo pipefail + echo "CI checks completed successfully""on":