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