refactor(desktop): mv traffic monitor to viewer #87
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: units test desktop | |
on: | |
pull_request: | |
release: | |
types: | |
- published | |
jobs: | |
desktop_test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install dependencies and run unit tests | |
run: | | |
yarn install | |
yarn test:unit |