-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: integration test gh action (#95)
* feat: integration test GH action * feat: check file structure * fix: chain name * fix: artifacts path * fix: artifacts path * fix: skip deployment prompt verification * add yaml to prettier * cleanup other files * address comments * add chains env var * update gh action * move env * refactor --------- Co-authored-by: Dean Amiel <dean@axelar.network> Co-authored-by: Milap Sheth <milap@axelar.network>
- Loading branch information
1 parent
3f42aeb
commit ad51464
Showing
9 changed files
with
115 additions
and
44 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
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,23 +1,23 @@ | ||
name: 'Publish Axelar Chains Config to NPM' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-to-npm: | ||
name: 'Publish to NPM' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm ci | ||
working-directory: ./axelar-chains-config | ||
- run: npm run build | ||
working-directory: ./axelar-chains-config | ||
- run: npm publish | ||
working-directory: ./axelar-chains-config | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
publish-to-npm: | ||
name: 'Publish to NPM' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm ci | ||
working-directory: ./axelar-chains-config | ||
- run: npm run build | ||
working-directory: ./axelar-chains-config | ||
- run: npm publish | ||
working-directory: ./axelar-chains-config | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Test | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
node-version: | ||
- 18.x | ||
os: | ||
- ubuntu-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install | ||
run: npm ci | ||
|
||
- name: Spin up Hardhat Network | ||
run: npx hardhat node & | ||
|
||
- name: Prepare local.json | ||
run: | | ||
echo '{ | ||
"chains": { | ||
"test": { | ||
"name": "Test", | ||
"id": "test", | ||
"chainId": 31337, | ||
"rpc": "http://127.0.0.1:8545", | ||
"tokenSymbol": "TEST", | ||
"contracts": {} | ||
} | ||
} | ||
}' > ./axelar-chains-config/info/local.json | ||
# Create .env file with default hardhat private key that's prefunded | ||
- name: Prepare .env | ||
run: | | ||
echo 'PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80' >> .env | ||
echo 'ENV=local' >> .env | ||
echo 'CHAINS=test' >> .env | ||
- name: Display local.json | ||
run: cat ./axelar-chains-config/info/local.json | ||
|
||
- name: Deploy ConstAddressDeployer | ||
run: node evm/deploy-contract.js -a ../node_modules/@axelar-network/axelar-gmp-sdk-solidity/artifacts/contracts/deploy/ -c ConstAddressDeployer -m create -y | ||
|
||
- name: Deploy Create3Deployer | ||
run: node evm/deploy-contract.js -a ../node_modules/@axelar-network/axelar-gmp-sdk-solidity/artifacts/contracts/deploy/ -c Create3Deployer -m create2 -y | ||
|
||
- name: Deploy AxelarGateway | ||
run: node evm/deploy-gateway-v6.2.x.js -m create3 -s "AxelarGateway v6.2" -g 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -m 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --keyID 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 -y | ||
|
||
- name: Call Method on Gateway | ||
run: node evm/gateway.js --action callContract --destinationChain test2 -y |
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 |
---|---|---|
|
@@ -22,6 +22,12 @@ | |
"options": { | ||
"tabWidth": 2 | ||
} | ||
}, | ||
{ | ||
"files": "*.yaml", | ||
"options": { | ||
"tabWidth": 2 | ||
} | ||
} | ||
] | ||
} |
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