diff --git a/.circleci/config.yml b/.circleci/config.yml index 00553ec..aa0933d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,8 @@ +version: 2.1 jobs: - job-name: + build: docker: - - image: circleci/node:12 + - image: cimg/node:14.10.1 # the primary container, where your job's commands are run steps: - - checkout - - run: - name: Install stuff - command: echo ok + - checkout # check out the code in the project directory + - run: echo "hello world"