mirror of
https://github.com/VSCodeVim/Vim.git
synced 2024-11-13 10:17:02 +03:00
6b702872e7
* appveyor config v1 * typo * choco failing - getting more info * force install? * ignore dependencies * Dot at the end makes it more obvious what the whole value is * reducing verbosity * fixed read shell command test #1914 special case for win32 + neovim * forgot to remove .only * taking care of the '\r' dangling on lines on win32 #1914 * \\n doesn't translate to new-line on Windows. \\r\\n does fixing failed test 4 of #1914 * prettified the code
16 lines
312 B
YAML
16 lines
312 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 |