aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
blob: f40a34ceacc7e1e65fc23ba5a46e6132c10d2dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: 2
jobs:
  build:
    docker:
      - image: circleci/node
    steps:
      - checkout
      - setup_remote_docker:
          version: 19.03.13
      - run: make build

  build_and_publish:
    docker:
      - image: circleci/node
    steps:
      - checkout
      - setup_remote_docker:
          version: 19.03.13
      - run: make build
      - run: make publish

workflows:
  version: 2
  build:
    jobs:
      - build:
          filters:
            branches:
              ignore: master
      - build_and_publish:
          filters:
            branches:
              only: master