From d2fb8f1cace236aa668a30c81331f364e294fc86 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Thu, 18 Apr 2019 09:35:24 +0100 Subject: [PATCH] chore(travis): tweaking conditional - testing PR builds --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 092b371f7..ae4e6b75a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ jobs: env: TEST_SUITE=lint # Don't run builds for renovate PRs, only renovate pushes -if: NOT branch =~ /^renovate\\/.+$/ AND type != pull_request +if: NOT branch =~ /^renovate\/.+$/ AND type != pull_request script: - if [ "$TEST_SUITE" == "lint" ]; then yarn run lint; else yarn run test:all; fi