@inst/vscode-bin-darwin
Version:
BINARY ONLY - VSCode binary deployment for macOS
28 lines (23 loc) • 536 B
YAML
branches:
only:
- master
platform:
- x86
- x64
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
# - ps: Install-Product node $env:NODEJS_VERSION $env:platform
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# generate documentation
- npm run-script generate-docs
# run tests
- npm test
# Don't actually build.
build: off