Update submodule references and improve CI workflow
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled

- Update submodule references for explorer-monorepo and smom-dbis-138 to latest commits.
- Modify CI workflow to include shellcheck installation and enforce error severity for script checks.
- Update contract addresses in configuration and documentation to reflect the new canonical addresses for CCIPWETH9Bridge and CCIP Router.
- Revise integration test documentation to align with updated contract addresses and deployment statuses.

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-24 22:50:52 -07:00
parent 95522d3bca
commit 2a6d3cfc7f
43 changed files with 281 additions and 101 deletions

View File

@@ -13,6 +13,7 @@ on:
paths:
- 'scripts/omnl/**'
- 'docs/04-configuration/mifos-omnl-central-bank/**'
- '.gitignore'
- '.github/workflows/validate-omnl-rail.yml'
jobs:
@@ -29,10 +30,8 @@ jobs:
- name: Transaction package CI smoke (fast ledger fixture)
run: bash scripts/omnl/run-transaction-package-ci-smoke.sh
- name: Shellcheck (optional)
run: |
if command -v shellcheck >/dev/null 2>&1; then
shellcheck -x scripts/omnl/*.sh || true
else
echo "Shellcheck not installed; skipping."
fi
- name: Install shellcheck
run: sudo apt-get update -qq && sudo apt-get install -y shellcheck
- name: Shellcheck scripts/omnl (severity error)
run: shellcheck -S error -x scripts/omnl/*.sh