From 6315223589558f1c0c32f8e60855bf004adfbded Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Wed, 6 Nov 2019 09:37:28 +0700 Subject: [PATCH] Node v12 is now LTS and supported - no more allowed failures - shouldn't need ignore-engines flag anymore --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 50495af0e6..6d6cb99f01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,13 +17,11 @@ matrix: include: - node_js: '10' env: TEST_SUITE=lint - allow_failures: - - node_js: '12' install: -- if [ "$TRAVIS_NODE_VERSION" == "12" ]; then yarn --ignore-engines; else yarn; fi +- yarn before_script: - if [ $DB == "mysql" ]; then mysql -e 'create database ghost_testing'; fi -- if [ "$DB" == "sqlite3" ]; then yarn add --ignore-engines --force sqlite3; fi +- if [ "$DB" == "sqlite3" ]; then yarn add --force sqlite3; fi script: | if [ "$TEST_SUITE" == "lint" ]; then yarn lint