Skip to content

Commit

Permalink
Fix workflows and bump solcover version
Browse files Browse the repository at this point in the history
  • Loading branch information
fforbeck committed Mar 22, 2024
1 parent ce8734b commit 6445409
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Install dependencies
run: npm ci --omit=optional
run: npm ci

- name: Check Coverage
run: npm run coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Install dependencies
run: npm ci --omit=optional
run: npm ci

- name: Compile contracts
run: npm run compile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slither.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Install NPM dependencies
run: npm ci --omit=optional
run: npm ci

- name: Compile Contracts
run: npm run compile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Install dependencies
run: npm ci --omit=optional
run: npm ci

- name: Run Linter
run: npm run lint
Expand Down
1 change: 1 addition & 0 deletions .solcover.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ module.exports = {
"test/ERC1155TestAdapter.sol",
"test/ERC721TestAdapter.sol",
"test/CloneFactoryTest.sol",
"test/TributeERC721.sol",
"test/TributeERC721V2.sol",
"utils/Multicall.sol",
"companion/interfaces/IReimbursement.sol",
Expand Down
42 changes: 23 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "3.0.2",
"solhint": "3.3.6",
"solidity-coverage": "0.7.16",
"solidity-coverage": "^0.7.22",
"truffle": "5.11.5",
"truffle-abi": "1.0.3",
"truffle-plugin-verify": "0.6.7",
Expand Down

0 comments on commit 6445409

Please sign in to comment.