diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-25 17:25:35 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-25 17:25:35 +0900 |
| commit | 37f99fca04af3ccd693a4f0d3f58bfdf99106586 (patch) | |
| tree | 3fcf0b2f3a28f44644de1733cbb425179a6ff7fe | |
| parent | Disable ElasticSearch in CI enviroment (diff) | |
| download | misskey-37f99fca04af3ccd693a4f0d3f58bfdf99106586.tar.gz misskey-37f99fca04af3ccd693a4f0d3f58bfdf99106586.tar.bz2 misskey-37f99fca04af3ccd693a4f0d3f58bfdf99106586.zip | |
Update appveyor.yml
| -rw-r--r-- | appveyor.yml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/appveyor.yml b/appveyor.yml index 238731f145..0b8884c3a1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,14 +12,8 @@ platform: 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 + # Get the latest stable version of Node.js or io.js + - ps: Install-Product node $env:nodejs_version # Update node-gyp # 必須! node-gyp のバージョンを上げないと、ネイティブモジュールのコンパイルに失敗します @@ -39,4 +33,6 @@ before_test: - npm run build test_script: + - node --version + - npm --version - npm test |