You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
406 B

version: 2
jobs:
build:
docker:
- image: circleci/node:8.10.0
steps:
- checkout
- run:
name: npm install
command: npm install
- run:
name: npm run build
command: npm run build
- run:
name: run tests
command: npm test
- run:
name: release
command: npm run semantic-release || true