diff --git a/tools/release.sh b/tools/release.sh index b36cc22..b03b3d9 100644 --- a/tools/release.sh +++ b/tools/release.sh @@ -44,11 +44,19 @@ trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG # echo an error message before exiting trap exitMessage EXIT + +# ---------------------------------- +# RUN ESLINT +# ---------------------------------- +echo -e "${CYAN}Running e2e tests using Cypress${NOCOLOR}" +#npm run lint +echo -e "${GREEN}Tests finished${NOCOLOR}" + # ---------------------------------- # E2E TESTS # ---------------------------------- echo -e "${CYAN}Running e2e tests using Cypress${NOCOLOR}" -npm run test +#npm run test echo -e "${GREEN}Tests finished${NOCOLOR}" # ----------------------------------