Skip to content

Instantly share code, notes, and snippets.

@santiago-su
Created February 13, 2019 10:24
Show Gist options
  • Save santiago-su/509581f6544bd07d685ee227f954b3f1 to your computer and use it in GitHub Desktop.
Save santiago-su/509581f6544bd07d685ee227f954b3f1 to your computer and use it in GitHub Desktop.
.circle/config.yml
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