Browse Source

fix

pull/1/merge
Julien Dudek 6 years ago
parent
commit
a683fa6b8a
  1. 4
      .circleci/config.yml

4
.circleci/config.yml

@ -2,7 +2,7 @@ version: 2.1
jobs: jobs:
build: build:
docker: docker:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run
- image: "circleci/node:12" # the primary container, where your job's commands are run
steps: steps:
- checkout # check out the code in the project directory - checkout # check out the code in the project directory
- restore_cache: - restore_cache:
@ -11,4 +11,4 @@ jobs:
- save_cache: - save_cache:
key: yarn-packages-{{ checksum "yarn.lock" }} key: yarn-packages-{{ checksum "yarn.lock" }}
paths: paths:
- ~/.cache/yarn
- ~/.node_modules
Loading…
Cancel
Save