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