File: .travis.yml

package info (click to toggle)
node-css-loader 5.0.1%2B~cs14.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,928 kB
  • sloc: javascript: 11,863; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 501 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sudo: false

language: node_js
matrix:
  include:
    - node_js: '11'
    - node_js: '10'
    - node_js: '8'
    - node_js: '6'
install:
  - npm install -g npm@latest
  - npm ci
  # https://github.com/microsoft/TypeScript/issues/40166
  - |
    if [ "$TRAVIS_NODE_VERSION" = '6' ]; then npm install typescript@3.9.7 ; fi
script:
  - npm test
cache:
  directories:
    - ~/.npm
    - node_modules
after_success:
  - './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'