diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-05-18 10:41:49 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-18 10:41:49 +0900 |
| commit | c0eb873feb4a8389e4e18b4bdfbfd808c369997e (patch) | |
| tree | 01239a27cdf044cb8b81d4b08c104551616c784e | |
| parent | 2.9.0 (diff) | |
| download | sharkey-c0eb873feb4a8389e4e18b4bdfbfd808c369997e.tar.gz sharkey-c0eb873feb4a8389e4e18b4bdfbfd808c369997e.tar.bz2 sharkey-c0eb873feb4a8389e4e18b4bdfbfd808c369997e.zip | |
Create appveyor.yml
| -rw-r--r-- | appveyor.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000000..576ed44dbd --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,31 @@ +# appveyor file +# http://www.appveyor.com/docs/appveyor-yml + +environment: + matrix: + - nodejs_version: 10.1.0 + +build: off + +install: + # Update Node.js + # 標準で入っている Node.js を更新します (2014/11/13 時点では、v0.10.32 が標準) + - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) + - node --version + + # Update NPM + - npm install -g npm + - npm --version + + # Update node-gyp + # 必須! node-gyp のバージョンを上げないと、ネイティブモジュールのコンパイルに失敗します + - npm install -g node-gyp + + - npm install + +init: + # git clone の際の改行を変換しないようにします + - git config --global core.autocrlf false + +test_script: + - npm test |