File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,6 @@ before_install:
1818before_script :
1919 - sh -e /etc/init.d/xvfb start
2020install :
21- - npm install --no-optional
22- - npm install --prefix public/docs/_examples
23- - npm install --prefix public/docs/_examples/_protractor
24- - npm run webdriver:update --prefix public/docs/_examples/_protractor
25- - gulp add-example-boilerplate
21+ - ./script/install.sh
2622script :
2723 - gulp $SCRIPT
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -ex -o pipefail
4+
5+ npm install --no-optional
6+ (cd public/docs/_examples && npm install)
7+ (cd public/docs/_examples/_protractor && npm install)
8+ npm run webdriver:update --prefix public/docs/_examples/_protractor
9+ gulp add-example-boilerplate
You can’t perform that action at this time.
0 commit comments