From ee6c5c41ca73c85265575d6780277d8e5b8df171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Og=C3=B3rek?= Date: Mon, 16 Oct 2017 11:33:00 +0200 Subject: [PATCH] ci: Run SauceLabs tests only when PRs come from the org --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 533291bba239..83a6deb91900 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,8 +10,8 @@ cache: directories: - node_modules addons: - chrome: latest + chrome: stable firefox: latest sauce_connect: true script: - - npm run test && npm run test:ci + - npm run test && if [ -z "$TRAVIS_SECURE_ENV_VARS" ]; then exit 0; else npm run test:ci; fi