We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5f6617 commit cf5a0a6Copy full SHA for cf5a0a6
appveyor.yml
@@ -10,12 +10,15 @@ platform:
10
clone_folder: 'c:\projects\%APPVEYOR_PROJECT_NAME%'
11
install:
12
- ps: 'Install-Product node $env:nodejs_version $env:platform'
13
+ - ps: '$NpmVersion = (npm -v).Substring(0,1)'
14
+ - ps: 'if($NpmVersion -eq 5) { npm install -g npm@5 }'
15
+ - ps: npm --version
16
- npm install
17
test_script:
18
- echo %cd%
19
- node --version
20
- npm --version
- - npm run test:unit
- - npm run test:integration
- - npm run test:package
21
+ - 'npm run test:unit'
22
+ - 'npm run test:integration'
23
+ - 'npm run test:package'
24
build: 'off'
0 commit comments