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
.travis.yml
language: node_js
node_js:
  - '14'
  - '13'
  - '12'
  - '10'
  - '8'
os:
  - linux
  - osx
  - windows
script:
  - if [ "${TRAVIS_NODE_VERSION}" == "14" ] && [ "${TRAVIS_OS_NAME}" == linux ];
    then npm run lint; fi
  - npm test
after_success:
  - nyc report --reporter=text-lcov | coveralls
back to top