mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-13 02:20:18 +00:00
25 lines
309 B
YAML
25 lines
309 B
YAML
|
sudo: false
|
||
|
|
||
|
language: node_js
|
||
|
|
||
|
node_js:
|
||
|
- "4"
|
||
|
- "5"
|
||
|
- "6"
|
||
|
- "7"
|
||
|
- "8"
|
||
|
- "9"
|
||
|
- "10"
|
||
|
|
||
|
install:
|
||
|
- PATH="`npm bin`:`npm bin -g`:$PATH"
|
||
|
# Install dependencies and build
|
||
|
- npm install
|
||
|
|
||
|
script:
|
||
|
# Output useful info for debugging
|
||
|
- node --version
|
||
|
- npm --version
|
||
|
# Run tests
|
||
|
- npm test
|