chore: update rector config to typo3 v14 #204
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Static Code Analysis | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'renovate/**' | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| sca: | |
| name: SCA | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| # Setup DDEV | |
| - name: Setup DDEV | |
| uses: ddev/github-action-setup-ddev@v1 | |
| with: | |
| autostart: false | |
| # Install dependencies | |
| - name: Install Composer dependencies | |
| run: | | |
| ddev start | |
| ddev composer config github-oauth.github.com ${{ secrets.GITHUB_TOKEN }} | |
| ddev composer install | |
| - name: Run static code analysis | |
| run: ddev composer ci:sca | |
| - uses: staabm/annotate-pull-request-from-checkstyle-action@v1 | |
| name: Annotate PHP CS Fixer | |
| with: | |
| files: php-cs-fixer.xml | |
| notices-as-warnings: true | |
| - uses: staabm/annotate-pull-request-from-checkstyle-action@v1 | |
| name: Annotate PHPStan | |
| with: | |
| files: phpstan.xml | |
| notices-as-warnings: true |