Skip to content

fix(xbootstrap5): load runtime scripts in the right order #141

fix(xbootstrap5): load runtime scripts in the right order

fix(xbootstrap5): load runtime scripts in the right order #141

Workflow file for this run

name: SonarCloud
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: sonarcloud-${{ github.ref }}
cancel-in-progress: true
jobs:
sonarcloud:
name: SonarCloud Analysis
runs-on: ubuntu-22.04
timeout-minutes: 15
if: github.repository == 'XOOPS/XoopsCore27'
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # v2
with:
php-version: "8.4"
extensions: intl, mbstring, mysqli
tools: composer
coverage: none
# Note: Coverage is handled separately by ci.yml; this workflow focuses on static analysis
- name: SonarCloud Scan
if: env.SONAR_TOKEN != ''
uses: SonarSource/sonarqube-scan-action@299e4b793aaa83bf2aba7c9c14bedbb485688ec4 # v7
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}