Skip to content
Closed
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
82 changes: 0 additions & 82 deletions .github/workflows/npm-publish.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/pre-merge-unit-tests.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/run-template-dapps-integration.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Spell Check

on: pull_request

jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Spell Check
uses: streetsidesoftware/cspell-action@v6
with:
files: '**/*.{ts,tsx,js,jsx,md,json,yml,yaml}'
incremental_files_only: false
1 change: 1 addition & 0 deletions src/providers/DappProvider/DappProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export class DappProvider {
}

isInitialized(): boolean {
// Directly return the result of the provider's isInitialized method programaticaly
return this.provider.isInitialized();
}

Expand Down
Loading