Browse Source

installer conf

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

26
.circleci/config.yml

@ -1,14 +1,14 @@
version: 2.1 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: cimg/node:14.10.1 # the primary container, where your job's commands are run
steps: steps:
- restore_cache: - restore_cache:
keys: keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }} - npm-v1-dependencies-{{ checksum "yarn.lock" }}
- save_cache: - save_cache:
paths: paths:
- ~/.cache/yarn - ~/.cache/yarn
keys: keys:
version: 2.1
jobs:
build:
docker:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run
steps:
- restore_cache:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- save_cache:
paths:
- ~/.cache/yarn
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
Loading…
Cancel
Save