Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Tale-Yazdi <[email protected]>
  • Loading branch information
ggwpez committed Dec 1, 2024
1 parent 7c93a3f commit b110309
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Forbid localhost links
run: |
if grep -r "localhost:3000" .; then
echo "Error: Found localhost:3000 in the codebase. Please remove hardcoded development URLs."
grep -r "localhost:3000" .
exit 1
else
echo "No localhost:3000 references found."
fi
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/simple-networking/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ title: Simple QUIC Networking
sidebar_position: 1
---

The JAM networking spec defines a the [Simple Networking Protocol](./snp.md) for testing. This version of the protocol will most likely not be formalized in the Graypaper. The Graypaper will only define the full version of the networking protocol once it is finalized.
The JAM networking spec defines a the [Simple Networking Protocol](./spec.md) for testing. This version of the protocol will most likely not be formalized in the Graypaper. The Graypaper will only define the full version of the networking protocol once it is finalized.

0 comments on commit b110309

Please sign in to comment.