added node install for ci

pull/14/head
Scott Anderson 2019-01-18 14:30:16 -07:00
parent 10841f5c86
commit 067a328bb1
2 changed files with 6 additions and 1 deletions

View File

@ -23,7 +23,7 @@ jobs:
command: ./deploy/ci-install-s3deploy.sh
- run:
name: Install NPM dependencies
command: npm i -g postcss-cli autoprefixer
command: ./deploy/ci-install-node.sh
- save_cache:
key: install-v1-{{ checksum ".circleci/config.yml" }}
paths:

5
deploy/ci-install-node.sh Executable file
View File

@ -0,0 +1,5 @@
set -x
set -e
apt-get install nodejs npm
npm i -g postcss-cli autoprefixer