Skip to content

fix: use axelarId in chain config #1053

fix: use axelarId in chain config

fix: use axelarId in chain config #1053

Workflow file for this run

name: Linting
on:
- pull_request
jobs:
lint:
strategy:
matrix:
node-version:
- 18.x
os:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Flatten
run: npm run flatten
- name: Prettier
run: npm run prettier
- name: Check for changes
run: |
if [ -n "$(git status --porcelain)" ]; then
echo Following files are changed...
git status
echo Changes:
git diff
exit 1;
else
exit 0;
fi