From f78fe4038145a208a7173814d169cfa8ef6342de Mon Sep 17 00:00:00 2001 From: MTLantoine Date: Tue, 1 Dec 2020 15:54:42 +0100 Subject: [PATCH] try something --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d933cae..df26cf3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,6 +16,15 @@ jobs: paths: - node_modules key: dependencies-{{ checksum "package.json" }}-{{ .Environment.CACHE_VERSION }} + bash: + docker: + - image: circleci/node:dubnium-browsers + working_directory: ~/repo + steps: + - checkout + - restore_cache: + key: dependencies-{{ checksum "package.json" }}-{{ .Environment.CACHE_VERSION }} + - run: echo "hello world" lint: docker: - image: circleci/node:dubnium-browsers @@ -131,6 +140,9 @@ workflows: build-test-and-lint: jobs: - build + - bash: + requires: + - build # - back-test-unit: # requires: # - build