Revision 88d0345997ea14b262519c7d5b5baaf6f9d78035 authored by Luigi Pinca on 13 June 2020, 06:48:58 UTC, committed by Luigi Pinca on 13 June 2020, 06:51:03 UTC
1 parent b6ae22a
Raw File
appveyor.yml
environment:
  matrix:
    - nodejs_version: '14'
    - nodejs_version: '13'
    - nodejs_version: '12'
    - nodejs_version: '10'
    - nodejs_version: '8'
platform:
  - x86
matrix:
  fast_finish: true
install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install
test_script:
  - node --version
  - npm --version
  - npm test
build: off
back to top