mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
19 lines
380 B
YAML
19 lines
380 B
YAML
environment:
|
|
ELECTRON_RUN_AS_NODE: 1
|
|
VSCODE_BUILD_VERBOSE: true
|
|
|
|
install:
|
|
- ps: Install-Product node 7.4.0 x64
|
|
- npm install -g npm --silent
|
|
- npm install -g gulp mocha --silent
|
|
|
|
build_script:
|
|
- .\scripts\npm.bat install
|
|
- gulp electron
|
|
- npm run compile
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- .\scripts\test.bat
|
|
- .\scripts\test-integration.bat
|