Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: enable contract-call-decoder unit tests in CI by skipping IPFS test #108

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ jobs:
- run: npx lerna bootstrap && npx lerna run build
- run: cd packages/bytecode-utils && npm run test

contract-call-decoder-uts:
name: contract-call-decoder unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npx lerna bootstrap && npx lerna run build
- run: cd packages/contract-call-decoder && npm run test

lib-sourcify-uts:
name: lib-sourcify unit tests
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ test('evaluate calldata can correctly parse addresses, bigints and bytes', async
t.is(`${decodedContractCall.method.decodedParams[3]}`, '0x010101ff');
});

test('evaluate calldata from tx getting metadata from bytecode', async (t) => {
test.skip('evaluate calldata from tx getting metadata from bytecode', async (t) => {
const ethereumProvider = provider('https://rpc.ankr.com/eth_goerli');
const tx = {
to: '0xD4B081C226Bc8aBdaf111DEf54c09E779ad29428',
Expand Down
Loading