File: .travis.yml

package info (click to toggle)
node-n3 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 776 kB
  • sloc: makefile: 16; sh: 6
file content (27 lines) | stat: -rw-r--r-- 548 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
language: node_js
node_js:
 - "8"
 - "10"
 - "node"
env:
 - DEFAULT_NODE_VERSION=10
script:
  - npm run lint
  - npm test
  - npm run spec-turtle
  - npm run spec-ntriples
  - npm run spec-nquads
  - npm run spec-trig
  - npm run docs
after_success:
  - if [ "$TRAVIS_NODE_VERSION" == "$DEFAULT_NODE_VERSION" ]; then
      npm install coveralls;
      node_modules/.bin/nyc --reporter=text-lcov mocha |
        node_modules/.bin/coveralls;
      ./.travis_build_pages;
    fi
cache:
  - npm
  - directories:
    - .rdf-test-suite-cache
sudo: false