Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-kaufman committed Jul 11, 2024
1 parent bd34300 commit aa09182
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
- name: JS Lint
run: |
npx eslint .
- name: Solidity Compile
run: npm run clean && npm run compile
- name: Solidity Tests # Needed because coverage doesn't work with all tests
run: npm run test
- name: Solidity Test Coverage
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"scripts": {
"lint": "eslint .",
"lint --fix": "eslint --fix .",
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"coveralls": "hardhat --config hardhat.config.coverage.js coverage ",
"gas-avg": "hardhat test && python3 gas-avg-check.py"
Expand Down

0 comments on commit aa09182

Please sign in to comment.