From 9ef4d779f13b661a2e55c7ea95463bd3041dc17b Mon Sep 17 00:00:00 2001 From: Alexandre Magno Date: Sat, 8 Sep 2018 21:46:46 +0200 Subject: [PATCH] better circleci build run for frontend tests --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1da767a90..1511b2db2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -73,9 +73,14 @@ jobs: - run: name: run node tests command: npm run test + - run: + name: install frontend dependencies + command: npm install + working_directory: frontend - run: name: run frontend tests - command: cd frontend && npm install && npm run test + command: npm run test + working_directory: frontend workflows: version: 2