forked from adazzle/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
36 lines (32 loc) · 1.09 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: 1.0.{build}
environment:
COVERALLS_REPO_TOKEN: 9RRu36GLfbnk5Ri6Y6FpoZU10CW6dlIfy
COVERALLS_SERVICE_NAME: appveyor
COVERALLS_GIT_COMMIT: $(APPVEYOR_REPO_COMMIT)
COVERALLS_GIT_BRANCH : $(APPVEYOR_REPO_BRANCH)
COVERALLS_SERVICE_JOB_ID : $(APPVEYOR_BUILD_ID)
COVERALLS_SERVICE_PULL_REQUEST : $(APPVEYOR_PULL_REQUEST_NUMBER)
shallow_clone: true
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node 0
- npm -g install [email protected]
- set PATH=%APPDATA%\npm;%PATH%
- npm install -g gulp
- npm install
- gulp flow-win
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- gulp test --release true
- gulp coveralls
# Don't actually build.
build: off
cache:
- C:\Users\appveyor\AppData\Roaming\npm\node_modules -> package.json # global npm modules
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache
- node_modules -> package.json # local npm modules