Update release.sh

This commit is contained in:
Daniel Appelgren
2022-01-11 10:24:23 +01:00
parent 65c29e065d
commit 48d864a628

View File

@@ -48,14 +48,14 @@ trap exitMessage EXIT
# ---------------------------------- # ----------------------------------
# RUN ESLINT # RUN ESLINT
# ---------------------------------- # ----------------------------------
echo -e "${CYAN}Running e2e tests using Cypress${NOCOLOR}" echo -e "${CYAN}Running lint${NOCOLOR}"
npm run lint npm run lint
echo -e "${GREEN}Tests finished${NOCOLOR}" echo -e "${GREEN}Tests finished${NOCOLOR}"
# ---------------------------------- # ----------------------------------
# TESTS # TESTS
# ---------------------------------- # ----------------------------------
echo -e "${CYAN}Running e2e tests using Cypress${NOCOLOR}" echo -e "${CYAN}Running tests${NOCOLOR}"
npm run test npm run test
echo -e "${GREEN}Tests finished${NOCOLOR}" echo -e "${GREEN}Tests finished${NOCOLOR}"