• 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  - "10"
13
14install:
15  - PATH="`npm bin`:`npm bin -g`:$PATH"
16  # Install dependencies and build
17  - npm install
18
19script:
20  # Output useful info for debugging
21  - node --version
22  - npm --version
23  # Run tests
24  - npm test
25