From 81fb7b4163010f01371f8eb236a38f5fda2047cb Mon Sep 17 00:00:00 2001
From: Will Hunt <will@half-shot.uk>
Date: Thu, 16 May 2019 17:33:37 +0100
Subject: [PATCH] Further speed improvements

---
 .travis.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 308932f..a5192b8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,6 @@
 dist: xenial
 language: node_js
-install: npm install && npm run build
+install: npm install
 
 cache:
   directories:
@@ -9,14 +9,17 @@ cache:
 jobs:
   include:
     - stage: unit tests
+      # Test already builds
       script: npm run test
       node_js: "10"
     - node_js: "12"
     - stage: lint
+      # Lint doesn't need to build
       script: npm run lint
       node_js: "12"
     - stage: coverage
-      script: npm run coverage
+      # Coverage does NOT build
+      script: npm run build && npm run coverage
       node_js: "12"
 
 # NOTE: This is unused atm
-- 
GitLab