Fix spawned wmic processes not exiting when using pidusage in package… #67
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: linux | |
| on: | |
| push: | |
| branches: '*' | |
| pull_request: | |
| branches: '*' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [ '18', '20', '22', '23' ] | |
| name: Test Node ${{ matrix.node }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm install | |
| - run: npm test | |
| coverage: | |
| runs-on: ubuntu-latest | |
| name: Test coverage | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup node | |
| uses: actions/setup-node@v2 | |
| - run: npm install | |
| - run: npm run coverage | |
| - uses: codecov/codecov-action@v5 |