Browse Source

try something

main
MTLantoine 6 years ago
parent
commit
f78fe40381
  1. 12
      .circleci/config.yml

12
.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

Loading…
Cancel
Save