Skip to content

build(deps): bump soroban-sdk from 26.0.1 to 26.1.0 #25

build(deps): bump soroban-sdk from 26.0.1 to 26.1.0

build(deps): bump soroban-sdk from 26.0.1 to 26.1.0 #25

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
contracts:
name: Soroban Contracts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32v1-none
components: rustfmt,clippy
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Test
run: cargo test --workspace
- name: Build WASM
run: cargo build --manifest-path contracts/Cargo.toml --target wasm32v1-none --release
frontend:
name: Frontend
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install
- name: Type check
run: npm run test
- name: Lint
run: npm run lint
- name: Build
run: npm run build