Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

fix: undefined when calling or querying a contract #271

Merged
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
11 changes: 3 additions & 8 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@ env:
PLATFORM_JAVA_OPTS: ""

jobs:

test-node:

runs-on: ubuntu-latest
# runs-on: macos-latest

strategy:
fail-fast: false
matrix:
node-version: [ 12.x, 13.x ]
node-version: [12.x, 13.x]

steps:
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -35,15 +33,14 @@ jobs:
run: npm ci

- name: Install hedera-local node globally
run: npm install -g https://github.com/hashgraph/hedera-local-node.git
run: npm install -g https://github.com/hashgraph/hedera-local-node.git#v.1.1.0

- name: Build CommonJS and ESM (from TypeScript)
run: npm run build-all

- name: Run tests
run: npm run test-node


# test-browser:
#
## runs-on: ubuntu-latest
Expand Down Expand Up @@ -102,9 +99,7 @@ jobs:
# - name: Run tests
# run: npm run test-react


coverage:

name: Coverage

runs-on: ubuntu-latest
Expand All @@ -127,7 +122,7 @@ jobs:
run: npm ci

- name: Install hedera-local node globally
run: npm install -g https://github.com/hashgraph/hedera-local-node.git
run: npm install -g https://github.com/hashgraph/hedera-local-node.git#v.1.1.0

- name: Build CommonJS and ESM (from TypeScript)
run: npm run build-all
Expand Down
Loading