fix #264
Workflow file for this run
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: Unit Tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| default: | |
| strategy: | |
| matrix: | |
| node: | |
| - lts/* | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| - windows-latest | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.os }}(Node.js ${{ matrix.node }}) | |
| steps: | |
| - name: Set git to use LF | |
| run: | | |
| git config --global core.autocrlf false | |
| git config --global core.eol lf | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: "yarn" | |
| - name: Restore | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| */*/node_modules | |
| key: 2022-10-11-${{ runner.os }}-${{ hashFiles('**/yarn.lock')}} | |
| - name: Install Linux Dependencies | |
| if: runner.os == 'Linux' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libudev-dev libusb-1.0-0-dev | |
| - name: Install Lerna | |
| run: yarn global add lerna | |
| - name: Bootstrap | |
| run: | | |
| yarn | |
| yarn build | |
| env: | |
| CI: false | |
| - name: Unit Tests | |
| run: yarn test | |
| env: | |
| CI: true |