aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
blob: 0e3edc262bd129481c1fb548cffc25de8a8501c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: 2
jobs:
  build:
    docker:
      - image: circleci/node
    steps:
      - checkout
      - setup_remote_docker
      - run: make build
      - run: make publish

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