• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1sudo: false
2
3language: node_js
4
5node_js:
6  - "4"
7  - "5"
8  - "6"
9  - "7"
10  - "8"
11  - "9"
12
13install:
14  - PATH="`npm bin`:`npm bin -g`:$PATH"
15  # Install dependencies and build
16  - npm install
17
18script:
19  # Output useful info for debugging
20  - node --version
21  - npm --version
22  # Run tests
23  - npm test
24