Fix: Clear destination on empty or invalid position received via NMEA #1580
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI test | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- name: streams | |
working-directory: ./packages/streams | |
run: | | |
npm run ci | |
- name: server-api | |
working-directory: ./packages/server-api | |
run: | | |
npm run test | |
npm run build | |
- name: resources-provider-plugin | |
working-directory: ./packages/resources-provider-plugin | |
run: | | |
npm run test | |
- name: server-admin-ui | |
working-directory: ./packages/server-admin-ui | |
run: | | |
npm run ci | |
npm run build | |
- run: npm test | |
env: | |
CI: true |