mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-28 12:36:35 +00:00
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:
parent
d8e3383d2b
commit
73b025bf12
2 changed files with 2 additions and 2 deletions
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue