diff --git a/.circleci/config.yml b/.circleci/config.yml index 0f883e0..4432d69 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,15 @@ version: 2.1 orbs: node: circleci/node@3.0.0 workflows: - node-tests: + tests: jobs: - - node/test + - helloworld + +jobs: + helloworld: + docker: + - image: circleci/node:12 + steps: + - checkout + - run: echo "hello world"