Skip to content
This repository was archived by the owner on Dec 5, 2019. It is now read-only.

Commit fd24ade

Browse files
committed
ci(Appveyor): Fix command strings
1 parent 1d62560 commit fd24ade

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

appveyor.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ init:
66
environment:
77
matrix:
88
- nodejs_version: '8'
9-
webpack_version: 2.6.0
9+
webpack_version: latest
1010
job_part: test
1111
- nodejs_version: '6'
12-
webpack_version: 2.6.0
12+
webpack_version: latest
1313
job_part: test
1414
- nodejs_version: '4.3'
15-
webpack_version: 2.6.0
15+
webpack_version: latest
1616
job_part: test
1717
build: 'off'
1818
matrix:
1919
fast_finish: true
2020
install:
21-
- 'ps: Install-Product node $env:nodejs_version x64'
21+
- ps: Install-Product node $env:nodejs_version x64
2222
- npm install
2323
before_test:
24-
- 'cmd: npm install webpack@^%webpack_version%'
24+
- cmd: npm install webpack@%webpack_version%
2525
test_script:
2626
- node --version
2727
- npm --version
28-
- 'cmd: npm run appveyor:%job_part%'
28+
- cmd: npm run appveyor:%job_part%

0 commit comments

Comments
 (0)