Skip to content

Commit

Permalink
Kiss to Tnc (#236)
Browse files Browse the repository at this point in the history
* - Add ability to convert from KISS to TNC
- Update dependencies.

* Bump build number.
  • Loading branch information
KD0NKS committed Sep 13, 2022
1 parent 753da05 commit b4d24a8
Show file tree
Hide file tree
Showing 5 changed files with 5,854 additions and 5,702 deletions.
54 changes: 27 additions & 27 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: Build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 12.x, 14.x, 16.x, 17.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
name: Build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 14.x, 16.x, 18.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import aprsPacket from './src/aprsPacket'
import aprsParser from './src/parser'
import { ConversionConstantEnum } from './src/ConversionConstantEnum'
import { KissUtil } from './src/KissUtil'
import { PacketTypeEnum } from './src/PacketTypeEnum'
import digipeater from './src/digipeater'
import telemetry from './src/telemetry'
Expand All @@ -13,6 +14,7 @@ export {
, ConversionConstantEnum
, ConversionUtil
, digipeater
, KissUtil
, PacketTypeEnum
, telemetry
, wx
Expand Down
Loading

0 comments on commit b4d24a8

Please sign in to comment.