fix(oracle): mask admin secret key in logs and status output #49
Workflow file for this run
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: CI/CD Pipeline | |
| on: | |
| push: | |
| branches: ["main", "dev"] | |
| pull_request: | |
| branches: ["main", "dev"] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # ───────────────────────────────────────────── | |
| # Smart Contracts (Rust / Soroban) | |
| # ───────────────────────────────────────────── | |
| contracts: | |
| # TODO: Contracts have pre-existing compilation errors (170 on main). | |
| # This job is set to continue-on-error until the smart contracts are fixed. | |
| name: Contracts — Lint, Build, Test | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| components: rustfmt, clippy | |
| - name: Cache cargo registry & build | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| stellar-lend/target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('stellar-lend/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cargo- | |
| - name: Check formatting | |
| continue-on-error: true | |
| run: | | |
| cd stellar-lend | |
| cargo fmt --all -- --check | |
| - name: Run clippy | |
| continue-on-error: true | |
| run: | | |
| cd stellar-lend | |
| cargo clippy --all-targets --all-features -- -D warnings | |
| - name: Build | |
| continue-on-error: true | |
| run: | | |
| cd stellar-lend | |
| cargo build --verbose | |
| - name: Run tests | |
| continue-on-error: true | |
| run: | | |
| cd stellar-lend | |
| cargo test --verbose | |
| - name: Run security audit | |
| run: | | |
| cd stellar-lend | |
| cargo install cargo-audit | |
| cargo audit | |
| # ───────────────────────────────────────────── | |
| # API (TypeScript / Express / Jest) | |
| # ───────────────────────────────────────────── | |
| api: | |
| name: API — Lint, Test, Build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18, 20] | |
| defaults: | |
| run: | |
| working-directory: api | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| cache-dependency-path: api/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| - name: Format check | |
| run: npx prettier --check "src/**/*.ts" | |
| - name: Type check | |
| run: npx tsc --noEmit | |
| - name: Run tests | |
| # TODO: Fix pre-existing test failures in lending.controller, stellar.service, and integration tests | |
| continue-on-error: true | |
| run: | | |
| npm test || echo "::warning::API tests have pre-existing failures that need to be fixed" | |
| - name: Build | |
| run: npm run build | |
| - name: Upload coverage | |
| if: always() && matrix.node-version == 20 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: api-coverage | |
| path: api/coverage/ | |
| # ───────────────────────────────────────────── | |
| # Oracle (TypeScript / Vitest) | |
| # ───────────────────────────────────────────── | |
| oracle: | |
| name: Oracle — Lint, Test, Build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18, 20] | |
| defaults: | |
| run: | |
| working-directory: oracle | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| cache-dependency-path: oracle/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| - name: Format check | |
| run: npx prettier --check "src/**/*.ts" "tests/**/*.ts" | |
| - name: Type check | |
| run: npx tsc --noEmit | |
| - name: Run tests | |
| run: npm test | |
| - name: Run tests with coverage | |
| if: matrix.node-version == 20 | |
| run: npm run test:coverage | |
| - name: Build | |
| run: npm run build | |
| - name: Upload coverage | |
| if: always() && matrix.node-version == 20 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: oracle-coverage | |
| path: oracle/coverage/ | |
| # ───────────────────────────────────────────── | |
| # Quality Gate — all jobs must pass | |
| # ───────────────────────────────────────────── | |
| quality-gate: | |
| name: Quality Gate | |
| runs-on: ubuntu-latest | |
| needs: [contracts, api, oracle] | |
| if: always() | |
| steps: | |
| - name: Check all jobs passed | |
| run: | | |
| echo "Contracts: ${{ needs.contracts.result }} (non-blocking — pre-existing issues)" | |
| echo "API: ${{ needs.api.result }}" | |
| echo "Oracle: ${{ needs.oracle.result }}" | |
| if [[ "${{ needs.api.result }}" != "success" ]] || \ | |
| [[ "${{ needs.oracle.result }}" != "success" ]]; then | |
| echo "::error::One or more quality checks failed. PR cannot be merged." | |
| exit 1 | |
| fi | |
| if [[ "${{ needs.contracts.result }}" != "success" ]]; then | |
| echo "::warning::Contracts have pre-existing compilation issues that need to be fixed." | |
| fi | |
| echo "All required quality checks passed!" |