
language: node_js
os:
  - windows
  - linux
node_js:
  - "10"
  - "12"
env:
  global:
    - CXX=g++-4.8
install:
  - npm version
  - npm i --package-lock --package-lock-only
  - npm ci
script:
  - npm test
after_success:
  - ./node_modules/.bin/codecov
