We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0770dba commit 3d8d2e7Copy full SHA for 3d8d2e7
.travis.yml
@@ -23,15 +23,26 @@ stages:
23
jobs:
24
include:
25
- stage: 'Lint markdown files'
26
- language: ruby
27
- rvm: 2.4.1
28
os: linux
+ language: generic
29
install: gem install awesome_bot
30
script:
31
- find . -type f -name '*.md' -exec awesome_bot {} \;
32
notifications:
33
email: false
34
+ - stage: 'Lint markdown files'
35
+ os: linux
36
37
+ before_install: skip
38
+ install:
39
+ - npm i -g markdown-spellcheck
40
+ before_script:
41
+ - wget --quiet https://raw.githubusercontent.com/optimizely/mdspell-config/master/.spelling
42
+ script:
43
+ - mdspell -a -n -r --en-us '**/*.md'
44
+ after_success: skip
45
+
46
- stage: 'Linting'
47
language: python
48
python: "2.7"
0 commit comments