Skip to content

Commit

Permalink
update bun & wharfkit
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisCarriere committed Oct 16, 2023
1 parent 5a8fde7 commit 33486d0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml → .github/workflows/bun.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Generate standalone Bun executable
on:
release:
types: [published]
Expand All @@ -7,13 +7,13 @@ permissions:
contents: write

jobs:
build:
build-and-push-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: "0.6.9"
bun-version: latest
- run: bun install
- run: bun test
- run: bun build --compile ./bin/cli.ts --outfile eos-evm-miner
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: CI
name: Bun Test

on: push

jobs:
build:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: "0.6.9"
bun-version: latest
- run: bun install
- run: bun test
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@enf/eos-evm-miner",
"version": "0.5.0",
"version": "0.5.2",
"description": "EOS EVM miner",
"type": "module",
"exports": "./dist/index.js",
Expand All @@ -20,8 +20,8 @@
"license": "MIT",
"dependencies": {
"@ethereumjs/devp2p": "latest",
"@wharfkit/session": "^0.5.0",
"@wharfkit/wallet-plugin-privatekey": "^0.5.0",
"@wharfkit/session": "^1.0.0",
"@wharfkit/wallet-plugin-privatekey": "^1.0.0",
"commander": "latest",
"dotenv": "latest",
"json-rpc-2.0": "latest",
Expand Down

0 comments on commit 33486d0

Please sign in to comment.