[TASK] Update rollup to v3.29.3 #1728
Workflow file for this run
This file contains 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: CGL | |
on: | |
push: | |
branches: | |
- main | |
- 'renovate/**' | |
pull_request: | |
branches: | |
- '**' | |
- '!renovate/**' | |
jobs: | |
cgl: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Prepare environment | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
tools: composer:v2, composer-require-checker, composer-unused | |
coverage: none | |
# Validation | |
- name: Validate composer.json | |
run: composer validate | |
# Install dependencies | |
- name: Install Composer dependencies | |
run: composer update --no-progress --no-plugins --no-scripts | |
# Check Composer dependencies | |
- name: Check dependencies | |
run: composer-require-checker check --config-file dependency-checker.json | |
- run: composer install --no-progress | |
- name: Check for unused dependencies | |
run: composer-unused | |
# Linting | |
- name: Lint composer.json | |
run: composer lint:composer | |
- name: Lint Editorconfig | |
run: composer lint:editorconfig | |
- name: Lint PHP | |
run: composer lint:php | |
- name: Lint TypoScript | |
run: composer lint:typoscript | |
# SCA | |
- name: SCA PHP | |
run: composer sca:php -- --error-format github | |
# Install Frontend dependencies | |
- name: Install Frontend dependencies | |
run: yarn --cwd Resources/Private/Frontend --frozen-lockfile | |
# Check asset integrity | |
- name: Check Frontend asset integrity | |
run: | | |
yarn --cwd Resources/Private/Frontend build | |
git add Resources/Public | |
git diff --exit-code --staged Resources/Public | |
# Frontend linting | |
- name: Lint SCSS | |
run: yarn --cwd Resources/Private/Frontend lint:scss | |
- name: Lint TypeScript | |
run: yarn --cwd Resources/Private/Frontend lint:ts | |
# Migration | |
- name: Run Rector migration | |
run: composer migration:rector -- --dry-run |