Allow plotting trajectory from SIM dataflash messages #1026
This file contains hidden or 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: Node CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - uses: actions/cache@v3 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - uses: actions/cache@v3 | |
| with: | |
| path: /tmp/testlogs | |
| key: ${{ runner.os }}-testlogs-${{ hashFiles('**/logdownloader.sh') }} | |
| restore-keys: | | |
| ${{ runner.os }}-testlogs- | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install | |
| - run: npm run build --if-present | |
| # - run: ./test/testlogfiles/logdownloader.sh | |
| # - run: npm run unit | |
| env: | |
| CI: true |