Skip to content

Commit 4eef72f

Browse files
committed
Run static analysers before xmllint, to see problems faster.
1 parent 3cba78c commit 4eef72f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ checkstyle:
1818

1919
.PHONY: checkquality
2020
checkquality:
21+
vendor/bin/phpstan analyse
22+
vendor/bin/psalm
23+
2124
xmllint --noout --schema vendor/magento/module-backend/etc/menu.xsd etc/adminhtml/menu.xml
2225
xmllint --noout --schema vendor/magento/framework/App/etc/routes.xsd etc/adminhtml/routes.xml
2326
xmllint --noout --schema vendor/magento/framework/Acl/etc/acl.xsd etc/acl.xml
@@ -35,9 +38,6 @@ checkquality:
3538
xmllint --noout view/adminhtml/ui_component/baldwin_urldataintegritychecker_grid_catalog_product_urlkey.xml # schema validation doesn't work here since the xsd includes another xsd ..
3639
xmllint --noout view/adminhtml/ui_component/baldwin_urldataintegritychecker_grid_catalog_product_urlpath.xml # schema validation doesn't work here since the xsd includes another xsd ..
3740

38-
vendor/bin/phpstan analyse
39-
vendor/bin/psalm
40-
4141
.PHONY: test
4242
test:
4343
vendor/bin/phpunit Test/

0 commit comments

Comments
 (0)