Skip to content

[TASK] Update TYPO3 CMS to v14 (major) #721

[TASK] Update TYPO3 CMS to v14 (major)

[TASK] Update TYPO3 CMS to v14 (major) #721

Workflow file for this run

name: CGL
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
cgl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
# Prepare environment
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
# We use the minimum supported PHP version
php-version: 8.2
tools: composer:v2, cs2pr
coverage: none
# Validation
- name: Validate composer.json
run: composer validate --strict
# Install dependencies
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
# Analyze
- name: Analyze dependencies
run: composer cgl analyze:dependencies
# Linting
- name: Lint composer.json
run: composer cgl lint:composer
- name: Lint Editorconfig
run: composer cgl lint:editorconfig
- name: Lint PHP
run: composer cgl lint:php -- --format=checkstyle | cs2pr
# SCA
- name: SCA PHP
run: composer cgl sca:php -- --error-format github
# Migration
- name: Run Rector migration
run: composer cgl migration:rector -- --dry-run