ignore gh-pages branch (#110)

This commit is contained in:
Benjamin Boudreau 2019-06-14 22:24:56 -04:00 committed by GitHub
parent 5effd8175d
commit 1678ecc608
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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