From 73b025bf125789e2408b90efe54b3e66876c5211 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 18 Aug 2019 14:00:04 -0700 Subject: [PATCH] Ensure ESLint is running on Travis It used to run as part of Jest. When I moved it back to its own thing, I guess I forgot to add it back to Travis. --- js/components/MainWindow/ClutterBar.tsx | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/components/MainWindow/ClutterBar.tsx b/js/components/MainWindow/ClutterBar.tsx index 1be1df34..db9d6c80 100644 --- a/js/components/MainWindow/ClutterBar.tsx +++ b/js/components/MainWindow/ClutterBar.tsx @@ -2,7 +2,7 @@ import React from "react"; import classnames from "classnames"; import * as Actions from "../../actionCreators"; -import { Action, Dispatch, Thunk } from "../../types"; +import { Action, Thunk } from "../../types"; import OptionsContextMenu from "../OptionsContextMenu"; import ContextMenuTarget from "../ContextMenuTarget"; import { useActionCreator, useTypedSelector } from "../../hooks"; diff --git a/package.json b/package.json index a1011377..99b2d722 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "stats": "webpack --config=demo/config/webpack.prod.js --json > stats.json", "stats-library": "webpack --config=config/webpack.library.js --json > stats.json", "test": "jest --config=config/jest.unit.js", - "travis-tests": "npm run test && npm run test && npm run type-check && npm run build && npm run build-library && npm run integration-tests", + "travis-tests": "npm run lint && npm run test && npm run test && npm run type-check && npm run build && npm run build-library && npm run integration-tests", "tdd": "jest --config=config/jest.unit.js --watch", "format": "prettier --write \"**/*.{js,ts,tsx,d.ts,css}\"", "integration-tests": "npm run build -- --display=errors-only && jest --config=config/jest.integration.js --runInBand",