From 8850f06e3e3da748b5a38fa4183ef5084c685912 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Mon, 19 Mar 2018 16:15:31 +0100 Subject: [PATCH] Updated travis config. --- .travis.yml | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6f664eb..f6cc463 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,11 @@ -{ - 'dist': 'trusty', - 'language': 'node_js', - 'node_js': '8.7.0', - 'cache': 'yarn', - 'scripts': [ - 'npm run test' - ], - 'before_install': [ - 'cd seasoned_api', - ], - 'before_script': 'yarn', - 'os': 'linux', -} +language: node_js +node_js: '8.7.0' +git: + submodules: false +script: + yarn test +before_install: + - cd seasoned_api +before_script: yarn +cache: false +os: linux