Update provider addresses in cheqd.json #15
This file contains hidden or 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: Pull Request Review | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| config-check: | |
| name: Check blockchain configs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout Latest | |
| uses: actions/checkout@v4 | |
| - name: Check Chain Configs | |
| uses: ping-pub/ping-dashboard-config-checker@v1.0 | |
| build: | |
| name: Build explorer | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout Latest | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Update explorer to latest | |
| run: | | |
| git submodule sync --recursive explorer | |
| git submodule update --init --remote --checkout explorer | |
| git -C explorer rev-parse --short HEAD | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: yarn | |
| cache-dependency-path: explorer/yarn.lock | |
| - name: Setup config | |
| run: cp -rf chains/* explorer/chains/ | |
| - name: Install dependencies | |
| working-directory: explorer | |
| run: yarn install | |
| - name: Build | |
| working-directory: explorer | |
| run: yarn build | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| - name: Verify SPA 404 fallback | |
| run: cp explorer/dist/index.html explorer/dist/404.html && test -s explorer/dist/404.html |