From 1678ecc608c3c2e520cb1afdf5c53a7ed2eabc9f Mon Sep 17 00:00:00 2001 From: Benjamin Boudreau Date: Fri, 14 Jun 2019 22:24:56 -0400 Subject: [PATCH] ignore gh-pages branch (#110) --- .circleci/config.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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