From ab67100562cffa512e33e6b59880cd0d43e708b7 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 22 Jan 2019 09:14:13 +0100
Subject: [PATCH] chore: travis yaml single quotes

---
 .travis.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 8568185bf4..41f16162ef 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,14 +4,14 @@ notifications:
 language: node_js
 
 node_js:
-  - "8.11.1"
+  - '8.11.1'
 
 sudo: false
 
 branches:
   only:
-  - master
-  - stable
+    - master
+    - stable
 
 if: tag IS blank
 
@@ -27,9 +27,9 @@ install:
 cache:
   yarn: true
   directories:
-    - ".cache"
-    - ".eslintcache"
-    - "node_modules"
+    - '.cache'
+    - '.eslintcache'
+    - 'node_modules'
 
 script:
   - yarn prettier --list-different
-- 
GitLab