Vim/appveyor.yml
Jason Fields 0d4380aa6e Set up husky & pretty-quick
This puts into place a pre-commit hook that formats staged files before committing.
Prettier is now also run on .yml files.
2020-06-20 20:36:01 -04:00

17 lines
313 B
YAML

environment:
node_version: '6.11.1'
PATH: c:\tools\neovim\Neovim\bin;$(PATH)
install:
- ps: Install-Product node $env:node_version
- choco install neovim --pre -fy --ignoredependencies
- npm install -g gulp
- npm install
build_script:
- gulp
test_script:
- nvim --version
- npm test --silent