Skip to content

Commit

Permalink
feat: add IP & ICMP packet implementations (#14)
Browse files Browse the repository at this point in the history
This PR adds new modules with IP and ICMP packet implementations, along
with jest integration to start adding unit tests.
  • Loading branch information
MegaRedHand authored Oct 29, 2024
1 parent 090353b commit b82497e
Show file tree
Hide file tree
Showing 6 changed files with 5,693 additions and 2,192 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,20 @@ jobs:

- name: Lint project
run: npm run lint

test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

- name: Install dependencies
run: npm ci

- name: Lint project
run: npm run test
Loading

0 comments on commit b82497e

Please sign in to comment.