Skip to content

feat(wmic): add gwmi command to be compatible with deleted wmic #59

feat(wmic): add gwmi command to be compatible with deleted wmic

feat(wmic): add gwmi command to be compatible with deleted wmic #59

Workflow file for this run

name: linux
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18', '20', '22', '23', '24' ]
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