Skip to content

Commit

Permalink
remove unnecessary cleaning step at github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad-Altabba committed Jan 24, 2024
1 parent 3281621 commit c1acca7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install --ignore-scripts
- run: yarn prebuild
- run: yarn init-scripts
- run: yarn build:cjs
- run: tar -czf /tmp/web3-${{ matrix.node }}.js.tar.gz --exclude="./.git" ./
- uses: actions/upload-artifact@v4
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"scripts": {
"version": "yarn run bootstrap && yarn build",
"bootstrap": "lerna bootstrap",
"prebuild": "yarn clean && ts-node scripts/init.ts",
"init-scripts": "ts-node scripts/init.ts",
"prebuild": "yarn clean && yarn init-scripts",
"build": "lerna run build --stream",
"build:types": "lerna run build:types --stream",
"build:cjs": "lerna run build:cjs --stream",
Expand Down

1 comment on commit c1acca7

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: c1acca7 Previous: 6c075db Ratio
processingTx 9481 ops/sec (±3.53%) 9301 ops/sec (±4.81%) 0.98
processingContractDeploy 40916 ops/sec (±7.87%) 39129 ops/sec (±7.62%) 0.96
processingContractMethodSend 20501 ops/sec (±4.15%) 19443 ops/sec (±5.19%) 0.95
processingContractMethodCall 41031 ops/sec (±5.12%) 38971 ops/sec (±6.34%) 0.95
abiEncode 47689 ops/sec (±6.22%) 44252 ops/sec (±6.92%) 0.93
abiDecode 32518 ops/sec (±7.16%) 30419 ops/sec (±8.89%) 0.94
sign 1650 ops/sec (±3.09%) 1656 ops/sec (±4.08%) 1.00
verify 383 ops/sec (±0.51%) 373 ops/sec (±0.78%) 0.97

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.