From 106322c13f598a4cc17eb5de4877a8892470e1a5 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <230051081+jmiller-moko@users.noreply.github.com> Date: Tue, 23 Dec 2025 15:16: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 c6a8c85..450e889 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,69 +31,69 @@ name: Continuous integration 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""on": + - name: CI completion + shell: bash + run: | + set -euo pipefail + echo "CI checks completed successfully""on":