balena-settings-storage
Version:
Balena settings storage utilities
30 lines (23 loc) • 506 B
YAML
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
cache:
- C:\Users\appveyor\.node-gyp
- '%AppData%\npm-cache'
# what combinations to test
environment:
matrix:
- nodejs_version: 10
- nodejs_version: 12
- nodejs_version: 14
install:
- ps: Install-Product node $env:nodejs_version x64
- npm install -g npm@6
- npm install
build: off
test_script:
- node --version
- npm --version
- ps: npm test
- cmd: npm test