Return early in find_device_by_hwaddr() if resolver.macNames is false #3121
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: API validation | |
| on: [push] | |
| env: | |
| FORCE_COLOR: 2 | |
| jobs: | |
| openapi-validator: | |
| name: Node | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 #v6.2.0 | |
| with: | |
| node-version: "20" | |
| cache: npm | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Run tests | |
| run: npm test |