Skip to content

Update dependency systeminformation to v5.23.8 [SECURITY] #1380

Update dependency systeminformation to v5.23.8 [SECURITY]

Update dependency systeminformation to v5.23.8 [SECURITY] #1380

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# run on all supported LTS versions and the latest/current version
node-version: [18, latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm test
run: npm test
- name: Upload coverage to Codecov
uses: codecov/[email protected]