From 0eb5c38ee58f692f84736047d88799cd661c4cf6 Mon Sep 17 00:00:00 2001 From: Vorobeyko Date: Thu, 30 Jan 2020 10:58:52 +0300 Subject: [PATCH] chore(ci): Remove travis.yml, remove ff binary path --- .github/workflows/mr.yml | 2 +- travis.yml | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 travis.yml diff --git a/.github/workflows/mr.yml b/.github/workflows/mr.yml index fd2b9d4..ea13818 100644 --- a/.github/workflows/mr.yml +++ b/.github/workflows/mr.yml @@ -21,5 +21,5 @@ jobs: run: npm run unit - name: Running e2e tests run: | - FIREFOX_BIN=/usr/bin/firefox npm run e2e-test + npm run e2e-test if [ "$(ls -A test/e2e/out)" ]; then echo "Not Empty"; else echo "Allure output directory is empty"; exit 1; fi \ No newline at end of file diff --git a/travis.yml b/travis.yml deleted file mode 100644 index d22126e..0000000 --- a/travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: node_js -node_js: - - "lts/*" - -before_script: - - export DISPLAY=:99.0 - - sh -e /etc/init.d/xvfb start - - sudo add-apt-repository -y ppa:yandex-qatools/allure-framework - - sudo apt-get update - - sudo apt-get install allure-cli