Skip to content

Commit

Permalink
feat: check file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Amiel committed Oct 26, 2023
1 parent 11c941f commit bc6d074
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ jobs:
- name: Install
run: npm ci

- name: List directories and check file existence
run: |
echo "Listing all directories:"
ls -R # Lists all contents recursively in the working directory
echo "Checking if 'local.json' exists in 'axelar-chains-config/info/':"
[ -f axelar-chains-config/info/local.json ] && echo "File exists" || echo "File does not exist"
- name: Spin up Hardhat Network
run: npx hardhat node &

Expand Down

0 comments on commit bc6d074

Please sign in to comment.