diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-24 18:49:56 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-24 18:49:56 +0900 |
| commit | 0a7c1caf43a1d48daed8cd46c563ca88ea19958f (patch) | |
| tree | ded4b01875599a8f9d729949e9c4f4ef3197d0b8 | |
| parent | Use package-lock (diff) | |
| download | misskey-0a7c1caf43a1d48daed8cd46c563ca88ea19958f.tar.gz misskey-0a7c1caf43a1d48daed8cd46c563ca88ea19958f.tar.bz2 misskey-0a7c1caf43a1d48daed8cd46c563ca88ea19958f.zip | |
Update appveyor.yml
| -rw-r--r-- | appveyor.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000000..3cae5d597c --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,38 @@ +# 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 + +before_test: + # 設定ファイルを配置 + - cp ./.travis/default.yml ./.config + - cp ./.travis/test.yml ./.config + + - npm run build + +test_script: + - npm test |