Skip to content
Merged
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
23 changes: 21 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ jobs:
- name: Run tests
working-directory: dashboard
run: npm test --silent
- name: Run wallet integration tests
working-directory: dashboard
run: npm run test:wallet --silent
- name: Upload wallet test report
if: always()
uses: actions/upload-artifact@v4
with:
name: wallet-integration-report
path: dashboard/reports/wallet-integration.json

listener:
name: Listener (lint, typecheck, test)
Expand All @@ -53,7 +62,7 @@ jobs:
run: npm test --silent

rust:
name: Rust (fmt check, tests)
name: Rust (fmt check, tests, fuzz)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -68,6 +77,16 @@ jobs:
run: |
rustup component add rustfmt || true
cargo fmt --all -- --check
- name: Run tests
- name: Run unit tests
working-directory: contract
run: cargo test --workspace --all-features --verbose
- name: Run fuzz tests
working-directory: contract
run: cargo test fuzz_ --verbose -- --nocapture
- name: Generate fuzz coverage report
run: bash scripts/run-fuzz-coverage.sh
- name: Upload fuzz coverage report
uses: actions/upload-artifact@v4
with:
name: fuzz-coverage-report
path: contract/reports/fuzz-coverage.json
Loading
Loading