12 lines
170 B
Bash
12 lines
170 B
Bash
#!/bin/sh
|
|
|
|
docker-compose up --detach test-web
|
|
|
|
sh ./bin/drun.sh lerna run pre-commit \
|
|
&& npm run check_code_format
|
|
EXIT=$?
|
|
|
|
docker-compose stop test-web
|
|
|
|
exit $EXIT
|