Skip to content

FIX #4074 , #2618 Fixed doSearch Race condition of improper loading, Fixed Minor another syntax error #53

FIX #4074 , #2618 Fixed doSearch Race condition of improper loading, Fixed Minor another syntax error

FIX #4074 , #2618 Fixed doSearch Race condition of improper loading, Fixed Minor another syntax error #53

Workflow file for this run

name: Security Scans
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
security-scans:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install Dependencies
run: npm install
- name: Run npm Audit
run: npm audit --audit-level=high || echo "npm audit failed"