File: .travis.yml

package info (click to toggle)
node-ws 7.4.2%2B~cs18.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 888 kB
  • sloc: javascript: 8,291; ansic: 176; makefile: 17
file content (17 lines) | stat: -rw-r--r-- 296 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: node_js
node_js:
  - '15'
  - '14'
  - '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