Skip to content

Commit

Permalink
add: spell check on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
danisharora099 committed Dec 5, 2022
1 parent c891cc3 commit 5ec4692
Show file tree
Hide file tree
Showing 5 changed files with 1,665 additions and 64 deletions.
31 changes: 24 additions & 7 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,29 @@
"words": [
"linkability",
"Unlinkability",
"waku"
"waku",
"deplatforming",
"gossipsub",
"incentivized",
"incentivizing",
"XMTP",
"RAILGUN",
"nwaku",
"deanonymization",
"ECIES",
"Discv5",
"Gossipsub",
"LIGHTPUSH",
"pubtopic1",
"proto",
"multiaddr",
"multiaddrs",
"Multiaddrs",
"keyturn",
"Comms",
"Protobuf",
"supercrypto",
"QUIC"
],
"flagWords": [],
"ignorePaths": [
Expand Down Expand Up @@ -33,10 +55,5 @@
"pattern": "/< youtube.*/"
}
],
"ignoreRegExpList": [
"multiaddr",
"dnsMultiaddr",
"wss",
"youtube-link"
]
"ignoreRegExpList": ["multiaddr", "dnsMultiaddr", "wss", "youtube-link"]
}
11 changes: 11 additions & 0 deletions .github/workflows/add-action-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ on:
types: [opened]

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_JS }}
- uses: bahmutov/npm-install@v1
- run: npm run check:spell
- run: npm run build

add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion docs/Concepts/3.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The protocols initially mounted are indicated as such.

![protocol overview](../../static//sequnce-charts/protocols-overview/overview.png "Protocols Overview")

The PubSub topic `pubtopic1` is used for routing (the network uses a default pubsub topic, [click here more info](notion://www.notion.so/2.md)) and indicates that it is subscribed to messages on that topic for relay.Ditto for Waku Store where it indicates that these messages are persisted on that node.
The PubSub topic `pubtopic1` is used for routing (the network uses a default pubsub topic) and indicates that it is subscribed to messages on that topic for relay.Ditto for Waku Store where it indicates that these messages are persisted on that node.

1. Node A creates a WakuMessage `msg1` with a ContentTopic `/my-dapp/0/notifications/proto`.

Expand Down
Loading

0 comments on commit 5ec4692

Please sign in to comment.