UNPKG

esformatter-fecs

Version:
27 lines (20 loc) 519 B
# AppVeyor file # http://www.appveyor.com/docs/appveyor-yml # Build version format version: "{build}" # What combinations to test environment: matrix: - nodejs_version: 4 - nodejs_version: 5 - nodejs_version: 6 install: # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version # install modules - npm install build: off test_script: - npm test matrix: fast_finish: true # set this flag to immediately finish build once one of the jobs fails.