refactor(amplifier): standardizes contract config read/write between chain specific and global contracts #1774
Workflow file for this run
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
name: Run Axelar Chains Config Tests | |
on: pull_request | |
jobs: | |
test: | |
runs-on: blacksmith-2vcpu-ubuntu-2204 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: useblacksmith/setup-node@v5 | |
with: | |
node-version: 18.x | |
cache: 'npm' | |
- name: Install | |
run: npm ci | |
working-directory: axelar-chains-config | |
- name: Test | |
run: npm run test | |
working-directory: axelar-chains-config |