Created
February 13, 2019 10:24
-
-
Save santiago-su/509581f6544bd07d685ee227f954b3f1 to your computer and use it in GitHub Desktop.
.circle/config.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: 'circleci/node:latest' | |
steps: | |
- checkout | |
- run: | |
name: install | |
command: npm install | |
- run: | |
name: lint | |
command: npm run lint | |
- run: | |
name: test | |
command: npm test | |
- run: | |
name: coverage | |
command: npm run test:coverage | |
- run: | |
name: release | |
command: npm run semantic-release || true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment