diff --git a/appveyor.yml b/appveyor.yml index a3f469b1fa..d2545b5845 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,7 +14,7 @@ init: SET REPO_URL=https://github.com/%APPVEYOR_REPO_NAME%.git install: -- ps: npm install -g gulp +- npm install -g gulp - ps: choco install cloc --no-progress - ps: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git @@ -23,11 +23,11 @@ before_build: - npm --version build_script: -- cmd: npm install +- npm install # Do normal build -- cmd: npm run dist -- cmd: npm run test -- cmd: gulp ci +- npm run dist +- npm run test +- gulp ci # Build sources for reviewers - cmd: | CALL git clone --branch=%APPVEYOR_REPO_BRANCH% %REPO_URL% %DIST_SRC_DIR%