Update config.yml

This commit is contained in:
Bruno Barbieri 2018-07-06 00:32:12 -04:00 committed by GitHub
parent 9ca9e90e4c
commit ca09a0be83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -104,11 +104,15 @@ jobs:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Install deps via npm
command: npm install
command: |
if [ ! -d node_modules ]; then
sudo npm install -g npm@$NPM_VERSION
npm ci
fi
- save_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- ./node_modules
- node_modules
prep-deps-firefox:
docker: