diff --git a/.travis.yml b/.travis.yml
index a5192b81845d16cafc3d7272e13e07059b53c821..4f63cd409b8b585b53a94d3c717eb09b0fa74e0f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,15 +8,15 @@ cache:
 
 jobs:
   include:
+      # Lint doesn't need to build
+    - stage: lint
+      script: npm run lint
+      node_js: "12"
     - 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
       # Coverage does NOT build
       script: npm run build && npm run coverage