-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (58 loc) · 1.66 KB
/
Copy pathci.yaml
File metadata and controls
73 lines (58 loc) · 1.66 KB
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: CI
on:
push:
branches:
- main
- develop
pull_request:
permissions:
contents: read
jobs:
quality:
name: PHP ${{ matrix.php-version }} / ${{ matrix.dependency-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version:
- '8.4'
- '8.5'
dependency-version:
- highest
- lowest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
tools: composer
extensions: mbstring, intl, pdo_sqlite
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Validate composer.json
run: composer validate --strict
- name: Install dependencies
run: |
if [ "${{ matrix.dependency-version }}" = "lowest" ]; then
composer update --prefer-lowest --prefer-stable --no-interaction --no-progress
else
composer update --prefer-stable --no-interaction --no-progress
fi
- name: Install frontend dependencies
run: npm ci
- name: Run PHPUnit
run: vendor/bin/phpunit
- name: Run frontend tests
run: npm run test:frontend
- name: Run PHPStan
run: composer phpstan
- name: Run PHP-CS-Fixer
run: vendor/bin/php-cs-fixer fix --dry-run --diff --config=.php-cs-fixer.dist.php
- name: Run twigcs
run: vendor/bin/twigcs templates --config=.twig-cs-fixer.php