Skip to content

Commit

Permalink
Merge pull request #14 from paritytech/tadeohepperle/runtime-api-fetc…
Browse files Browse the repository at this point in the history
…hing

Executing Runtime API Calls from the Browser
  • Loading branch information
tadeohepperle committed Feb 5, 2024
2 parents 6f95464 + 9d5d4d4 commit 0a754b2
Show file tree
Hide file tree
Showing 22 changed files with 1,378 additions and 1,729 deletions.
7 changes: 4 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
"plugins": ["@typescript-eslint", "unused-imports"],
"ignorePatterns": ["dist/", "tailwind.config.js"],
"rules": {
"@typescript-eslint/no-explicit-any": ["off"],
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/no-explicit-any": ["warn"],
"no-unused-vars": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"unused-imports/no-unused-imports": "warn",
"unused-imports/no-unused-vars": [
"warn",
{
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3

- name: Test the WASM module with Node's WASM executer
run: |
cd ./codegen
wasm-pack test --node --no-default-features --features web
- name: Install dependencies
uses: bahmutov/npm-install@v1

Expand Down
Loading

0 comments on commit 0a754b2

Please sign in to comment.