mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-18 16:03:37 +00:00
18 lines
343 B
YAML
18 lines
343 B
YAML
version: '{build}'
|
|
|
|
# Install scripts. (runs after repo cloning)
|
|
install:
|
|
# Get the latest stable version of io.js
|
|
- ps: Install-Product node ''
|
|
- npm -g install npm@latest
|
|
- set PATH=%APPDATA%\npm;%PATH%
|
|
- node --version
|
|
- npm --version
|
|
- npm install
|
|
|
|
# No need for MSBuild on this project
|
|
build: off
|
|
|
|
test_script:
|
|
- npm test
|