SamVerschueren / clinton

Project style linter
MIT License
122 stars 9 forks source link

[travis] Take testing matrix into account #67

Closed Scrum closed 7 years ago

Scrum commented 7 years ago

not watching the matrix (

sudo: false
language: node_js
node_js:
  - 7
  - 6

matrix:
  include:
    - node_js: 5
      env: TEST_PATH=test/test.js test/test-p*.js
    - node_js: 4
      env: TEST_PATH=test/test.js test/test-p*.js

after_success:
  - './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'

script: npm test $TEST_PATH
SamVerschueren commented 7 years ago

I see, never thought about it. PR welcome because I don't have much time nowadays.