Skip to content

Commit

Permalink
Add linting as part of test script
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsnik committed May 19, 2018
1 parent 71296f8 commit 46cfc80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
"watch": "NODE_ENV=dev rollup -c -w",
"serve": "node ./scripts/start-server.js",
"dev": "npm-run-all --parallel serve watch",
"test": "NODE_ENV=test node ./scripts/run-cypress-tests.js",
"test": "yarn lint && NODE_ENV=test node ./scripts/run-cypress-tests.js",
"test:dev": "cypress open",
"lint": "eslint src",
"lint": "eslint src cypress demo scripts",
"prepare": "npm run build"
},
"files": [
Expand Down

0 comments on commit 46cfc80

Please sign in to comment.