Skip to content

Commit 46415c1

Browse files
committed
dev ex: remove lint from npm run test and add as a separate step to ci
1 parent db4ee77 commit 46415c1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222

2323
- uses: actions/checkout@v2
2424
- run: npm install
25+
26+
- run: npm run lint
2527
- run: npm run test
2628

2729
- uses: codecov/codecov-action@v1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"docs:build": "npx typedoc --options typedoc.js",
1717
"lint": "ethereumjs-config-lint",
1818
"lint:fix": "ethereumjs-config-lint-fix",
19-
"test": "npm run lint && npm run test:node && npm run test:browser",
19+
"test": "npm run test:node && npm run test:browser",
2020
"test:browser": "karma start karma.conf.js",
2121
"test:node": "nyc --reporter=lcov mocha --require ts-node/register 'test/*.spec.ts'",
2222
"tsc": "ethereumjs-config-tsc"

0 commit comments

Comments
 (0)