We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41d0565 commit 800f2bfCopy full SHA for 800f2bf
.github/workflows/static-analysis.yml
@@ -70,4 +70,4 @@ jobs:
70
ecs-cache-
71
72
- name: Run format checks
73
- run: composer format --no-progress-bar
+ run: composer format:check --no-progress-bar
composer.json
@@ -44,13 +44,19 @@
44
"scripts": {
45
"test": "pest",
46
"ecs": "ecs check --fix",
47
+ "ecs:check": "ecs check",
48
"rector": "rector process",
49
+ "rector:check": "rector process --dry-run",
50
"stan": "phpstan analyse",
51
"type-coverage": "pest --type-coverage --min=100",
52
"format": [
53
"@rector",
54
"@ecs"
55
],
56
+ "format:check": [
57
+ "@rector:check",
58
+ "@ecs:check"
59
+ ],
60
"check": [
61
"@format",
62
"@test",
0 commit comments