Files
agent/appveyor.yml
Róbert Kiss bd49e26978 build: upgrade node to 8.8.1 (#471)
* build: upgrade to nodejs 8.8.1 and npm 5.5.1

* ci: upgrade the npm to the latest version in ci files

* build: remove duplication from clean script
2017-10-27 00:44:55 +02:00

35 lines
646 B
YAML

os: unstable
environment:
GH_TOKEN:
secure: 3IebpEKmC39codi1wT6dXx8mql4/mCL1JzZ7lir7GQ5MWRnCxlED2OXbiKHHigDV
matrix:
- nodejs_version: "8"
cache:
- node_modules -> package.json
matrix:
fast_finish: true
build: off
shallow_clone: true
install:
- ps: Install-Product node $env:nodejs_version
- npm i -g npm@latest
- choco install chromium
- set CI=true
- set PATH=%APPDATA%\npm;%PATH%
- node -v
- npm -v
- appveyor-retry npm install
test_script:
- appveyor-retry npm run build
- npm run lint
- set CHROME_BIN="C:\Program Files (x86)\Chromium\Application\chrome.exe"
- npm run test
- npm run release