Testing and debugging
🧹 Keep a modern codebase
pnpm check
composer check
make check
⚗️ Run static analysis
composer analyse
composer inspect
✅ Run unit tests
pnpm test
composer test
make test
🐛 Fix lint, format and types
pnpm fix
composer fix
make fix
🧪 Check all code bugs
pnpm debug
composer debug
make debug
🚀 End-to-end testing
pnpm e2e
composer e2e
make e2e