feat(Razer): Adding Support for 100 mouses #40
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - run: npm ci | |
| - name: Type check and build | |
| run: npm run build | |
| - name: Test | |
| run: npm test | |
| - name: Bundle size | |
| run: npm run size | |
| - name: Audit | |
| run: npm audit --audit-level=high | |
| - name: No new dependencies | |
| run: | | |
| if [ -s package.json ] && [ "$(node -p "Object.keys(require('./package.json').dependencies ?? {}).length")" != "0" ]; then | |
| echo "OpenMouse ships with no runtime dependencies. Adding one needs a maintainer decision." | |
| exit 1 | |
| fi |