Browse Source

Feat: dependencies

pull/1/merge task2
verzelea 6 years ago
parent
commit
271ad8db82
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -5,4 +5,10 @@ jobs:
- image: cimg/node:14.10.1 - image: cimg/node:14.10.1
steps: steps:
- checkout - checkout
- run: echo "hello world"
- restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install
- save_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
Loading…
Cancel
Save