-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Elias Karakoulakis
committed
Apr 25, 2020
1 parent
1161317
commit 58d938c
Showing
1 changed file
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,29 @@ | ||
version: 1.0.{build} | ||
|
||
environment: | ||
nodejs_version: "10" | ||
|
||
# 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 | ||
# install modules | ||
- npm install | ||
|
||
# branches to build | ||
branches: | ||
# whitelist | ||
only: | ||
- master | ||
- appveyor | ||
|
||
# Build worker image (VM template) | ||
image: Visual Studio 2015 | ||
|
||
platform: | ||
- x86 | ||
# Post-install test scripts. | ||
test_script: | ||
# Output useful info for debugging. | ||
- node --version | ||
- npm --version | ||
# run tests | ||
#- npm test | ||
|
||
build_script: | ||
- cmd: npm install | ||
# Don't actually build. | ||
build: off |