lukeapage / node-markdown-spellcheck

spellchecks markdown files
145 stars 58 forks source link

Fails when used in travis as dependency #139

Open markusa opened 4 years ago

markusa commented 4 years ago

Dear all,

below you find a minimal travis configuration file which stops travis from further continue the make command. It stops with: The command "sudo npm install -g markdown-spellcheck" failed and exited with 1 during .

.travis.yml:

dist: focal
before_install:
 - sudo apt-get update
install: 
 - sudo apt-get install npm
 - sudo apt-get install hunspell hunspell-en-us
 - sudo npm install -g markdown-spellcheck
script: make

Any ideas how to fix this?