Skip to content

Commit 2e1e23a

Browse files
michael-ciniawskyevilebottnawi
authored andcommitted
ci(appveyor): add windows testing (#1468)
* ci(appveyor): init windows testing * squash(test): ...
1 parent 418493d commit 2e1e23a

File tree

4 files changed

+1022
-1039
lines changed

4 files changed

+1022
-1039
lines changed

appveyor.yml

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

0 commit comments

Comments
 (0)