From 5ea7219f7bb6bdcc38950b42673a821b666c52a6 Mon Sep 17 00:00:00 2001 From: Mathieu Morainville Date: Thu, 22 Feb 2018 15:19:09 +0100 Subject: [PATCH] fix(ci): run the webserver and start the e2e tests manually --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 913a9d5..0a4bc9d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -48,8 +48,12 @@ jobs: - demo/node_modules key: v1-dependencies-{{ checksum "demo/package.json" }} + - run: + command: cd ./demo/ && npm run serve + background: true + # run tests! - - run: cd ./demo/ && npm run e2e + - run: cd ./demo/ && npx cypress run - run: cd ./demo/ && npm run build - run: git status