Skip to content

docs(readme): 📄 enhance readability and content #5

docs(readme): 📄 enhance readability and content

docs(readme): 📄 enhance readability and content #5

Workflow file for this run

name: Security Scan
on:
push:
branches:
- '**'
pull_request:
workflow_dispatch:
jobs:
npm-audit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
run: npm install -g pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run Audit
run: pnpm audit --audit-level=high