Summary: - 10.11.0 the bundled Node.js version in electron - Chromium version number 69.0.3497.128 BREAKING CHANGES: - require minimum MacOs version 10.10 Yosemite
37 lines
730 B
YAML
37 lines
730 B
YAML
os: unstable
|
|
|
|
clone_folder: c:\projects\uhk-agent
|
|
|
|
environment:
|
|
GH_TOKEN:
|
|
secure: 3IebpEKmC39codi1wT6dXx8mql4/mCL1JzZ7lir7GQ5MWRnCxlED2OXbiKHHigDV
|
|
CSC_LINK: c:\projects\uhk-agent\scripts\certs\windows-cert.p12
|
|
matrix:
|
|
- nodejs_version: "10.11.0"
|
|
|
|
cache:
|
|
- node_modules -> package.json
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
build: off
|
|
|
|
shallow_clone: true
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- 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
|