mirror of
https://github.com/grafana/grafana.git
synced 2024-12-30 10:47:30 -06:00
add codespell to circleci
This commit is contained in:
parent
ee303c03e9
commit
aff336d4e7
@ -1,6 +1,18 @@
|
||||
version: 2
|
||||
|
||||
jobs:
|
||||
codespell:
|
||||
docker:
|
||||
- image: circleci/python
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: install codespell
|
||||
command: 'sudo pip install codespell'
|
||||
- run:
|
||||
name: check documentation spelling errors
|
||||
command: 'codespell -x docs/sources/project/building_from_source.md docs/'
|
||||
|
||||
test-frontend:
|
||||
docker:
|
||||
- image: circleci/node:6.11.4
|
||||
@ -103,6 +115,10 @@ workflows:
|
||||
version: 2
|
||||
test-and-build:
|
||||
jobs:
|
||||
- codespell:
|
||||
filters:
|
||||
tags:
|
||||
only: /.*/
|
||||
- build:
|
||||
filters:
|
||||
tags:
|
||||
|
Loading…
Reference in New Issue
Block a user