chore: enrich .mokostandards with build/deploy/scripts

This commit is contained in:
gitea-actions[bot]
2026-05-02 18:13:07 -05:00
parent a4fbcc0f87
commit f368f271b7
+23
View File
@@ -20,6 +20,29 @@
</governance>
<build>
<language>HCL</language>
<runtime>php:&gt;=8.1</runtime>
<package-type>composer</package-type>
</build>
<scripts>
<script name="test" phase="test">
<command>composer run test</command>
<description>phpunit</description>
<runner>composer</runner>
</script>
<script name="phpcs" phase="lint">
<command>composer run phpcs</command>
<description>phpcs --standard=phpcs.xml lib/ validate/ automation/</description>
<runner>composer</runner>
</script>
<script name="phpstan" phase="lint">
<command>composer run phpstan</command>
<description>phpstan analyse -c phpstan.neon lib/ validate/ automation/</description>
<runner>composer</runner>
</script>
<script name="validate" phase="validate">
<command>composer run validate</command>
<description>php bin/moko health -- --path .</description>
<runner>composer</runner>
</script>
</scripts>
</mokostandards>