Skip to content

Commit 8cefebd

Browse files
authored
add appveyor config (#280)
1 parent 955e53e commit 8cefebd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

appveyor.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
init:
3+
- git config --global core.autocrlf input
4+
environment:
5+
matrix:
6+
- nodejs_version: '9'
7+
webpack_version: latest
8+
- nodejs_version: '8'
9+
webpack_version: latest
10+
- nodejs_version: '6'
11+
webpack_version: latest
12+
build: 'off'
13+
matrix:
14+
fast_finish: true
15+
install:
16+
- ps: Install-Product node $env:nodejs_version x64
17+
- npm i -g npm@latest
18+
- npm install
19+
before_test:
20+
- cmd: npm install webpack@%webpack_version%
21+
test_script:
22+
- node --version
23+
- npm --version
24+
- cmd: npm run ci

0 commit comments

Comments
 (0)