Skip to content

Add dark mode support to soroban-client with persistent theme toggle and system preference fallback #43

Add dark mode support to soroban-client with persistent theme toggle and system preference fallback

Add dark mode support to soroban-client with persistent theme toggle and system preference fallback #43

Workflow file for this run

name: Soroban Client Tests
on:
push:
paths:
- 'soroban-client/**'
pull_request:
paths:
- 'soroban-client/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: 'soroban-client/package-lock.json'
- name: Install Dependencies
working-directory: ./soroban-client
run: npm ci
- name: Run Tests
working-directory: ./soroban-client
run: npm run test:coverage -- --passWithNoTests