1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
version: 2 jobs: build: docker: - image: circleci/node steps: - checkout - setup_remote_docker - run: yarn - run: make build - run: make publish workflows: version: 2 build: jobs: - build: filters: branches: only: master