diff --git a/.circleci/config.yml b/.circleci/config.yml index ef44f2a..18faf0b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,12 +1,15 @@ version: 2.1 + + jobs: - build: + install: docker: - image: cimg/node:16.10.0 auth: username: anthonyjhoiro password: $DOCKERHUB_PASSWORD + steps: - checkout - restore_cache: @@ -22,3 +25,7 @@ jobs: paths: - node_modules +workflows: + build-workflow: + jobs: + - install