Browse Source

Update config.yml

main
NicolasLepinette 6 years ago
committed by GitHub
parent
commit
37e874f236
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .circleci/config.yml

4
.circleci/config.yml

@ -5,12 +5,14 @@ jobs:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run - image: cimg/node:14.10.1 # the primary container, where your job's commands are run
steps: steps:
- checkout - checkout
- restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp - run: yarn global add node-gyp
- run: yarn install - run: yarn install
- run: yarn lint - run: yarn lint
- run: yarn format:check - run: yarn format:check
- run: yarn test:ci - run: yarn test:ci
- save_cache: - save_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
key: yarn-packages-{{ checksum "yarn.lock" }}
paths: paths:
- ./node_modules - ./node_modules
Loading…
Cancel
Save