Skip to content

Update dependency systeminformation to v5.31.0 [SECURITY] #1568

Update dependency systeminformation to v5.31.0 [SECURITY]

Update dependency systeminformation to v5.31.0 [SECURITY] #1568

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: [22]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install
run: yarn install
- name: yarn test
run: yarn test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4