diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d172ece..fd82049 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,9 +11,6 @@ stages: - test - deploy -before_script: - - apt-get update -qq && apt-get install -y -qq sshpass - test_coverage: stage: test script: @@ -25,6 +22,7 @@ deploy_prod: stage: deploy script: - echo "Deploying to Production" + - apt-get update -qq && apt-get install -y -qq sshpass - npm install - sshpass -V - export SSHPASS=$SSH_PASS diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 5e9d953..0000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: node_js -node_js: - - "node" - -cache: - directories: - - "node_modules" - -before_install: - - npm i -g mocha nyc \ No newline at end of file