We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ce003 commit eb47310Copy full SHA for eb47310
.travis.yml
@@ -35,15 +35,26 @@ stages:
35
jobs:
36
include:
37
- stage: 'Lint markdown files'
38
- language: ruby
39
- rvm: 2.4.1
40
os: linux
+ language: generic
41
install: gem install awesome_bot
42
script:
43
- find . -type f -name '*.md' -exec awesome_bot {} \;
44
notifications:
45
email: false
46
+ - stage: 'Lint markdown files'
47
+ os: linux
48
49
+ before_install: skip
50
+ install:
51
+ - npm i -g markdown-spellcheck
52
+ before_script:
53
+ - wget --quiet https://raw.githubusercontent.com/optimizely/mdspell-config/master/.spelling
54
+ script:
55
+ - mdspell -a -n -r --en-us '**/*.md'
56
+ after_success: skip
57
+
58
- stage: 'Lint'
59
node_js: '12'
60
script: npm run lint
0 commit comments