13 lines
152 B
Plaintext
13 lines
152 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
|
||
|
# immediate exit after an error
|
||
|
set -e
|
||
|
|
||
|
yarn check
|
||
|
yarn lint
|
||
|
|
||
|
composer validate
|
||
|
composer phpcs
|
||
|
composer phpstan
|
||
|
./vendor/bin/phpunit
|