From 2a5b4b9fba0e88608c9259ea276ab1f8ef9f2d0a Mon Sep 17 00:00:00 2001 From: Majira Date: Thu, 4 Jun 2026 20:08:22 +0200 Subject: [PATCH] fix: address review feedback for #355 --- implement_milestonetimeline_compone.ts | 49 ++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 implement_milestonetimeline_compone.ts diff --git a/implement_milestonetimeline_compone.ts b/implement_milestonetimeline_compone.ts new file mode 100644 index 00000000..5c7ca759 --- /dev/null +++ b/implement_milestonetimeline_compone.ts @@ -0,0 +1,49 @@ +Here's the merged file with the fix applied: + +// File: .github/workflows/ci.yml +name: CI + +on: + push: + branches: + - main + pull_request: + release: + types: [published] + +jobs: + contracts: + name: Contracts (Rust) + runs-on: ubuntu-latest + env: + SOROBAN_SDK_BUILD_SYSTEM_SUPPORTS_SPEC_SHAKING_V2: "1" + defaults: + run: + working-directory: stellargrant-contracts + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Rust + uses: dtolnay/rust-toolchain@stable + with: + components: rustfmt, clippy + + - name: Add WASM target + run: rustup target add wasm32v1-none + + - name: Format check + run: cargo fmt --all -- --check + + - name: Clippy (WASM, lib only) + run: cargo clippy --workspace --lib --target wasm32v1-none -- -D warnings + + - name: Check (WASM) + run: cargo check --workspace --target wasm32v1-none + + api: + name: API (Node.js) + runs-on: ubuntu-latest + services: + postgres: + image: postgres: \ No newline at end of file