Browse Source

install step update

main
Youssef Touggani 6 years ago
parent
commit
068a682c4f
  1. 16
      .circleci/config.yml

16
.circleci/config.yml

@ -9,13 +9,13 @@ jobs:
steps: steps:
- checkout # check out the code in the project directory - checkout # check out the code in the project directory
- restore_cache: - restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install
- run: yarn lint
- run: yarn format:check
- run: yarn format --check
- run: yarn test:ci
- save_cache:
key: yarn-packages-{{ checksum "yarn.lcok" }}
key: yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install
- run: yarn lint
- run: yarn format:check
- run: yarn format --check
- run: yarn test:ci
- save_cache:
key: yarn-packages-{{ checksum "yarn.lcok" }}
paths: paths:
- ./node_modules - ./node_modules
Loading…
Cancel
Save