-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* enable cli test workflow * Fix broken test * remove unused library * release new version of ts client * bump ts client version --------- Robert Leonard
- Loading branch information
1 parent
7761f2e
commit 7fcc3be
Showing
8 changed files
with
58 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
# name: EVM cli client | ||
# on: | ||
# push: | ||
# paths: | ||
# - 'gatekeeper-cli/**' | ||
# - '.github/**' | ||
|
||
# jobs: | ||
# ethereum-build: | ||
# name: Build, lint and test the ethereum libraries on ${{ matrix.os }} | ||
|
||
# runs-on: ${{ matrix.os }} | ||
# strategy: | ||
# matrix: | ||
# node: ['20.x'] | ||
# os: [ubuntu-latest] | ||
|
||
# defaults: | ||
# run: | ||
# working-directory: ./gatekeeper-cli | ||
|
||
# steps: | ||
# - name: Checkout repo | ||
# uses: actions/checkout@v2 | ||
|
||
# - name: Install Foundry | ||
# uses: foundry-rs/foundry-toolchain@v1 | ||
|
||
# - name: Use Node ${{ matrix.node }} | ||
# uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: ${{ matrix.node }} | ||
|
||
# - name: Install | ||
# run: yarn | ||
|
||
# - name: Run Anvil Node | ||
# run: anvil --fork-url ${{ vars.BNB_TESTNET_RPC_URL }} & | ||
|
||
# - name: Run build | ||
# run: yarn build | ||
|
||
# - name: Test | ||
# run: yarn test | ||
name: EVM cli client | ||
on: | ||
push: | ||
paths: | ||
- 'gatekeeper-cli/**' | ||
- '.github/**' | ||
|
||
jobs: | ||
ethereum-build: | ||
name: Build, lint and test the ethereum libraries on ${{ matrix.os }} | ||
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
node: ['20.x'] | ||
os: [ubuntu-latest] | ||
|
||
defaults: | ||
run: | ||
working-directory: ./gatekeeper-cli | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
|
||
- name: Use Node ${{ matrix.node }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
||
- name: Install | ||
run: yarn | ||
|
||
- name: Run Anvil Node | ||
run: anvil --fork-url ${{ vars.BNB_TESTNET_RPC_URL }} & | ||
|
||
- name: Run build | ||
run: yarn build | ||
|
||
- name: Test | ||
run: yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 0 additions & 63 deletions
63
gatekeeper-cli/src/test/integration/update-gatekeeper-fees.spec.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@identity.com/gateway-evm-ts-client", | ||
"version": "0.1.1", | ||
"version": "0.1.4", | ||
"description": "Adapter library for Identity.com gateway token system on Ethereum", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
|
@@ -14,10 +14,10 @@ | |
"stop-network": "lsof -t -i:8545 | xargs kill", | ||
"copy-contracts": "cp -r ../smart-contract/build/contracts/* src/contracts/abi/ && cp -r ../smart-contract/typechain-types src/contracts" | ||
}, | ||
"repository": "[email protected]:identity-com/on-chain-identity-gateway.git", | ||
"author": "Daniel Kelleher", | ||
"repository": "[email protected]:identity-com/gateway-protocol-evm.git", | ||
"author": "Robert Leonard", | ||
"license": "MIT", | ||
"bugs": "https://github.com/identity-com/on-chain-identity-gateway/issues", | ||
"bugs": "https://github.com/identity-com/gateway-protocol-evm/issues", | ||
"files": [ | ||
"/dist", | ||
"/npm-shrinkwrap.json" | ||
|