TypeScript-TmLanguage/appveyor.yml

19 строки
353 B
YAML

# Test against this version of Node.js
environment:
nodejs_version: "4"
# Install scripts. (runs after repo cloning)
install:
- ps: Install-Product node $env:nodejs_version
- node --version
- npm install -g npm@next
- npm --version
- cd build
- npm install
- cd ../tests
- npm install
- npm test
# Don't actually build.
build: off