Skip to content

Commit e7d2d44

Browse files
committed
Enabled full test suite on Renovate PRs
no issue - only regression tests were being run on Renovate PRs, which allowed bad updates to go through - this commit enables the full test suite
1 parent e8dd42d commit e7d2d44

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ before_script:
2121
- if [ $DB == "mysql" ]; then mysql -e 'create database ghost_testing'; fi
2222
- if [ "$DB" == "sqlite3" ]; then yarn add --force sqlite3; fi
2323
script: |
24-
if [[ "$TRAVIS_PULL_REQUEST_BRANCH" =~ ^renovate || "$TRAVIS_EVENT_TYPE" == "cron" ]]; then
25-
yarn ci:regression
26-
elif [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then
24+
if [[ "$TRAVIS_PULL_REQUEST_BRANCH" =~ ^renovate || "$TRAVIS_PULL_REQUEST" == "false" ]]; then
2725
grunt test-all --verbose
2826
else
2927
yarn ci

0 commit comments

Comments
 (0)