20 lines
517 B
YAML
20 lines
517 B
YAML
language: node_js
|
|
node_js: '11.9.0'
|
|
git:
|
|
submodules: true
|
|
script:
|
|
- yarn test
|
|
- yarn coverage
|
|
before_install:
|
|
- cd seasoned_api
|
|
- cp conf/development.json.example conf/development.json
|
|
before_script:
|
|
- yarn
|
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
- chmod +x ./cc-test-reporter
|
|
- ./cc-test-reporter before-build
|
|
after-script:
|
|
- ./cc-test-resporter after-build --exit-code $TRAVIS_TEST_RESULT
|
|
cache: false
|
|
os: linux
|