-
-
Notifications
You must be signed in to change notification settings - Fork 11
73 lines (64 loc) · 1.93 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
name: CGL
on:
push:
branches:
- main
- 'renovate/**'
pull_request:
branches:
- main
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:
# @todo Use PHP 8.4 once PHP-CS-Fixer supports PHP 8.4
php-version: 8.4
ini-file: development
tools: composer:v2, composer-require-checker, composer-unused
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
# Validation
- name: Validate composer.json
run: composer validate --no-check-lock
# Install dependencies
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Install Frontend dependencies
run: npm ci
# Audit packages
- name: Audit Frontend dependencies
run: npm audit
# Check dependencies
- name: Check Composer dependencies
run: composer-require-checker check --config-file dependency-checker.json
- name: Check for unused Composer dependencies
run: composer-unused --excludePackage=ext-zlib
- name: Check for unused Frontend dependencies
run: npm run check-dependencies
# 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 shell files
run: bash -c 'shopt -s globstar nullglob; shellcheck tests/e2e/**/*.sh'
# SCA
- name: SCA PHP
run: composer sca:php -- --error-format github
# Migration
- name: Run Rector migration
run: composer migration:rector -- --dry-run