environment:
    matrix:
    # node.js
    - nodejs_version: "12"
    - nodejs_version: "13"

platform:
    - x86
    - x64

install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install

test_script:
  - npm run test:ci

build: off 