fix(ci): add lint check

This commit is contained in:
rymnc 2022-11-25 11:39:40 +05:30
parent 67ed8ee703
commit 6b56cc5bcf
No known key found for this signature in database
GPG Key ID: C740033EE3F41EBD
2 changed files with 5 additions and 1 deletions

View File

@ -33,6 +33,9 @@ jobs:
- id: dependencies - id: dependencies
run: yarn install run: yarn install
- id: lint
run: yarn lint
- id: test - id: test
run: yarn test run: yarn test

View File

@ -10,7 +10,8 @@
"deploy:goerli": "yarn deploy goerli", "deploy:goerli": "yarn deploy goerli",
"deploy:localhost": "yarn deploy localhost", "deploy:localhost": "yarn deploy localhost",
"coverage": "hardhat coverage", "coverage": "hardhat coverage",
"fmt": "prettier --write \"**/*.{js,ts}\"" "fmt": "prettier --write \"**/*.{js,ts}\"",
"lint": "prettier --check \"**/*.{js,ts}\""
}, },
"devDependencies": { "devDependencies": {
"@interep/contracts": "0.6.0", "@interep/contracts": "0.6.0",