nodehun
Version:
The Hunspell binding for nodejs that exposes as much of hunspell as possible and also adds new features. Hunspell is a first class spellcheck library used by Google, Apple, and Mozilla.
34 lines (26 loc) • 615 B
YAML
version: "{build}"
init:
# Windows line endings.
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: "13"
- nodejs_version: "12"
- nodejs_version: "11"
- nodejs_version: "10"
platform:
- x64
- x86
install:
- git submodule update --init --recursive
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
before_build:
- npm install -g node-gyp
build_script:
- npm install -g npm@latest
- npm install # calls node-gyp rebuild
test_script:
# Output versions for reference.
- node --version
- npm --version
- npm test