Browse Source

💚 : Update config.yml

main
LecomteAdrien 6 years ago
parent
commit
579de8647b
  1. 14
      .circleci/config.yml

14
.circleci/config.yml

@ -1,18 +1,22 @@
version: 2.1 version: 2.1
jobs: jobs:
yarn-install:
yarn:
docker: docker:
- image: cimg/node:12.18 - image: cimg/node:12.18
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: npm-v2-dependencies-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
- run: yarn build
- save_cache: - save_cache:
key: yarn-packages-v3{{ checksum "yarn.lock" }}
key: npm-v2-dependencies-{{ checksum "yarn.lock" }}
paths: paths:
- ./node_modules - ./node_modules
workflows: workflows:
install:
node-tests:
jobs: jobs:
- yarn-install
- yarn
Loading…
Cancel
Save