13 lines
144 B
Plaintext
13 lines
144 B
Plaintext
|
#!/bin/bash
|
||
|
yarn lint
|
||
|
lintStatus=$?
|
||
|
|
||
|
if [ $lintStatus -eq 0 ]
|
||
|
then
|
||
|
echo "linting succeeded"
|
||
|
exit 0
|
||
|
else
|
||
|
echo "linting failed"
|
||
|
exit 1
|
||
|
fi
|