Skip to content

Commit

Permalink
Add markdownlint to Circle CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
songy23 committed Sep 27, 2019
1 parent 24d5c86 commit 2117e99
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .circleci/config.yml
Expand Up @@ -2,11 +2,29 @@
version: 2

jobs:
build:
misspell:
docker:
- image: circleci/golang:1.12
steps:
- checkout
- run:
name: Verify
name: Misspell check
command: make precommit
markdownlint:
docker:
- image: node
steps:
- checkout
- run:
name: Install markdownlint-cli.
command: npm install -g markdownlint-cli
- run:
name: Check markdownlint
command: markdownlint .

workflows:
version: 2
build:
jobs:
- misspell
- markdownlint

0 comments on commit 2117e99

Please sign in to comment.