You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

7 lines
347 B

# Run lint and abort if there are any lint errors
# --quiet will supress warnings which would cause this check to fail too
# this is temporary until all warnings are fixed
npm run lint --quiet || exit 1
# Run format:check on modified and uncommitted files and abort if there are any formatting errors
npm run format:check --uncommitted || exit 1