-
Notifications
You must be signed in to change notification settings - Fork 62
/
Makefile
92 lines (73 loc) · 2.46 KB
/
Makefile
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Default to showing help section
info: intro help
intro:
@echo ""
@echo "🗺️ Explorer"
@echo ""
# ===========================
# Main commands
# ===========================
# Dependencies
install: intro do-composer-install do-assets-install
reset: intro do-clean install
# Tests
tests: intro do-test-phpunit do-test-report
mutations: intro do-test-infection do-test-report
phpstan: intro do-phpstan
# Development
pre-commit: intro do-lint-staged-files do-commit-intro
codestyle: intro do-cs-ecs do-phpstan
codestyle-fix: intro do-cs-ecs-fix
# ===========================
# Overview of commands
# ===========================
help:
@echo "\n=== Make commands ===\n"
@echo "Dependencies"
@echo " make install Make the project ready for development."
@echo " make reset Reinstall backend and frontend dependencies."
@echo "\nTests"
@echo " make tests Run phpunit tests."
@echo " make mutations Run the infection mutation tests."
@echo " make phpstan Run PHPStan."
@echo "\nDevelopment"
@echo " make codestyle Check if the codestyle is OK."
@echo " make codestyle-fix Check and fix your messy codestyle."
# ===========================
# Recipes
# ===========================
# Dependencies
do-composer-install:
@echo "\n=== Installing composer dependencies ===\n"\
COMPOSER_MEMORY_LIMIT=-1 composer install
do-assets-install:
@echo "\n=== Installing npm dependencies ===\n"
npm install
# Development
do-commit-intro:
@echo "\n=== Let's ship it! ===\n"
do-lint-staged-files:
@node_modules/.bin/lint-staged
do-cs-ecs:
./vendor/bin/ecs check --config=easy-coding-standard.php .
do-cs-ecs-fix:
./vendor/bin/ecs check --fix --config=easy-coding-standard.php .
do-clean:
@echo "\n=== 🧹 Cleaning up ===\n"
@rm -rf src/vendor/*
@rm -rf src/node_modules/*
# Tests
do-test-phpunit:
@echo "\n=== Running unit tests ===\n"
XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html ./report
do-test-infection:
@echo "\n=== Running unit tests ===\n"
XDEBUG_MODE=coverage vendor/bin/infection --threads=4 --min-covered-msi=100 --min-msi=100
do-test-report:
@echo "\n=== Click the link below to see the test coverage report ===\n"
@echo "report/index.html"
@echo "\n=== Click the link below to see the mutation coverage report ===\n"
@echo "report/infection.html"
do-phpstan:
@echo "\n=== Running PHPStan ===\n"
vendor/bin/phpstan analyse