TypeScript-TmLanguage/appveyor.yml

20 строки
351 B
YAML

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