gzip-uncompressed-size
Version:
Determine the estimated uncompressed size from a GZIP file (uses ISIZE)
28 lines (21 loc) • 492 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: 6
install:
- ps: Install-Product node $env:nodejs_version x64
- npm -g install npm@2
- set PATH=%APPDATA%\npm;%PATH%
- npm install --build-from-source
build: off
test_script:
- node --version
- npm --version
- cmd: npm test