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.
This commit is contained in:
Jordan Eldredge 2019-08-18 14:00:04 -07:00
parent d8e3383d2b
commit 73b025bf12
2 changed files with 2 additions and 2 deletions

View file

@ -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";

View file

@ -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",