feat: action to add deployed token manager to tenderly project [AXE-2356] #148
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: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
arch: [amd64] | |
steps: | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install | |
run: npm ci | |
working-directory: axelar-chains-config | |
- name: Test | |
run: npm run test | |
working-directory: axelar-chains-config |