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
3 changes: 3 additions & 0 deletions .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ jobs:
- name: Cache for Turbo
uses: rharkor/caching-for-turbo@v2.2.1

- name: Lint
run: npx turbo run lint --filter=@audius/sdk

- name: Typecheck
run: npx turbo run typecheck --filter=@audius/sdk

Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/sdk/createSdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ import {
addTokenRefreshMiddleware
} from './middleware'
import { OAuth } from './oauth'
import { SolanaWallet } from './solanaWallet'
import { TokenStoreLocalStorage } from './oauth/TokenStoreLocalStorage'
import { Logger, Storage, StorageNodeSelector } from './services'
import { SolanaWallet } from './solanaWallet'
import { SdkConfigSchema, type SdkConfig } from './types'

export const createSdk = (config: SdkConfig) => {
Expand Down
Loading