forked from anmonteiro/lumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
41 lines (33 loc) · 892 Bytes
/
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
37
38
39
40
41
environment:
nodejs_version: "7.0.0"
platform:
- x64
configuration:
- Release
matrix:
fast_finish: true
cache:
- '%UserProfile%\.m2'
- tmp -> scripts\package.js
- '%APPDATA%\npm-cache -> yarn.lock'
- node_modules -> yarn.lock
- '%SystemRoot%\boot.exe -> boot.properties'
- '%UserProfile%\.boot\cache\lib -> boot.properties'
- '%UserProfile%\.boot\cache\bin -> boot.properties'
install:
- ps: Install-Product node $env:nodejs_version x64
- cmd: npm install -g yarn
- cmd: yarn install
- ps: wget 'https://github.com/boot-clj/boot-bin/releases/download/latest/boot.exe' -OutFile "$pwd\boot.exe"
- cmd: 'move boot.exe %SystemRoot%' #set PATH=$pwd\boot.exe;%PATH%
test_script:
- yarn lint
- yarn type:check
- yarn test
- cmd: boot test
- cmd: boot release-ci
artifacts:
- path: build
name: Lumo
# Don't actually build (MSBuild).
build: off