name: CI on: push: branches: - main - develop pull_request: permissions: contents: read jobs: php: runs-on: ubuntu-latest steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 with: persist-credentials: false - uses: shivammathur/setup-php@b604ade2a87db23f8871b7182e69ec5e75effb45 # v2 with: php-version: '8.3' coverage: none tools: composer:v2 - run: composer validate --strict - run: composer install --no-interaction --prefer-dist - run: composer check - run: npm ci --no-audit --no-fund - run: npm run lint - run: npm run format