Skip to content

build(deps): bump the deps-patch group across 1 directory with 4 updates #257

build(deps): bump the deps-patch group across 1 directory with 4 updates

build(deps): bump the deps-patch group across 1 directory with 4 updates #257

Workflow file for this run

name: NPM Audit
on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
jobs:
Audit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Node.js modules cache
uses: actions/cache@v4
id: modules-cache
with:
path: ${{ github.workspace }}/node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-modules
- name: npm audit
run: npm audit --audit-level=high --only=prod