Use Prettier.
Assuming you have the npm dependencies install, run npm run prettier -- --write
to fix the code style.
Run PHP tests:
docker-compose run --rm php ./vendor/bin/phpunit
docker-compose run --rm php ./vendor/bin/pint
docker-compose run --rm php ./vendor/bin/phpstan analyse --memory-limit=256M
Run Node tests:
docker-compose run --rm node sh -c "npm run flow && npm run lint && npm test && npm run prettier -- -l"