Browse Source

Update config.yml

pull/3/merge
Francois Lannoy 6 years ago
parent
commit
1263a1f4b3
  1. 9
      .circleci/config.yml

9
.circleci/config.yml

@ -7,11 +7,12 @@ workflows:
requires: requires:
- build - build
jobs: jobs:
docker:
- image: cimg/node:14.10.1
build: build:
docker:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run
steps: steps:
- checkout # check out the code in the project directory
- checkout
- restore_cache: - restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }} key: yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
@ -20,8 +21,6 @@ jobs:
paths: paths:
- ./node_modules - ./node_modules
test: test:
docker:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:

Loading…
Cancel
Save