-
-
Notifications
You must be signed in to change notification settings - Fork 9
76 lines (65 loc) · 2.01 KB
/
cgl.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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