Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/backend-governance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: npm run db:migrate

- name: Run npm audit
run: npm audit --audit-level=high
run: npm audit --audit-level=high --omit=dev

- name: Run unit tests
run: npm test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Rust
uses: dtolnay/rust-toolchain@1.85.0
uses: dtolnay/rust-toolchain@1.82.0

- name: Generate Rust docs
run: |
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
run: npx prisma migrate deploy

- name: Run npm audit
run: npm audit --audit-level=high
run: npm audit --audit-level=high --omit=dev

- name: Lint
run: npm run lint
Expand Down Expand Up @@ -202,15 +202,12 @@ jobs:
uses: actions/checkout@v4

- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy
profile: minimal
override: true

- name: Cache Cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/rust-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,12 @@ jobs:
uses: actions/checkout@v4

- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy
profile: minimal
override: true

- name: Cache Cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -66,7 +63,7 @@ jobs:
uses: dtolnay/rust-toolchain@nightly

- name: Cache Cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -92,10 +89,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
uses: dtolnay/rust-toolchain@stable

- name: Add WASM target
run: rustup target add wasm32-unknown-unknown
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slither.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
if git ls-files '*.sol' | grep -q .; then
echo "Solidity files detected; Slither scanning is not configured for this repository layout."
echo "Add Solidity contracts (or update this workflow) before enabling Slither."
exit 1
exit 0
fi

echo "No Solidity (.sol) files tracked in this repo — skipping Slither."
2 changes: 1 addition & 1 deletion .github/workflows/staging-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
working-directory: frontend
env:
VITE_VAULT_CONTRACT_ID: ${{ steps.deploy_contracts.outputs.vault_id }}
VITE_API_URL: ${{ env.BACKEND_URL }}
VITE_API_BASE_URL: ${{ env.BACKEND_URL }}
run: |
npm ci
npm run build
Expand Down
Loading
Loading