9 lines
148 B
YAML
9 lines
148 B
YAML
language: node_js
|
|
node_js:
|
|
- 12
|
|
cache: npm
|
|
before_script:
|
|
- cd $TRAVIS_BUILD_DIR/app && npm ci
|
|
script:
|
|
- cd $TRAVIS_BUILD_DIR/app && npm test
|