diff --git a/.circleci/config.yml b/.circleci/config.yml index c9322e9..8fec19a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,6 +22,13 @@ jobs: [ -f ./dist/blank.html ] || exit 1 [ -f ./dist/widget.js ] || exit 1 [ -f ./dist/bookmarklet.js ] || exit 1 + - run: + name: npm start works + command: | + npm run start & + pid=$! + sleep 10s + ps $pid - run: name: deploy command: | @@ -35,7 +42,10 @@ workflows: version: 2 build-deploy: jobs: - - build + - build: + filters: + branches: + ignore: gh-pages - deploy: requires: - build