Browse Source

👷 added npm install and cache in build job

main
Francois Lannoy 6 years ago
parent
commit
4357a77d24
  1. 9
      .circleci/config.yml

9
.circleci/config.yml

@ -6,6 +6,15 @@ jobs:
- image: circleci/node:dubnium-browsers
steps:
- checkout
- restore_cache:
keys:
- dependencies-{{ checksum "package.json" }}-{{ .Environment.CACHE_VERSION }}
- dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: dependencies-{{ checksum "package.json" }}-{{ .Environment.CACHE_VERSION }}
workflows:
build_deploy_netlify:

Loading…
Cancel
Save