MTLantoine 6 years ago
parent
commit
2190fc085b
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -5,12 +5,12 @@ jobs:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run
steps:
- checkout # check out the code in the project directory
- save_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
paths: ./node_modules/
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- save_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
paths: ./node_modules/
- run: yarn global add node-gyp && yarn install
lint:

Loading…
Cancel
Save