Skip to content

Commit

Permalink
Create security.yml (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Status authored Dec 26, 2023
1 parent ed342e7 commit ad410bb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Security Scan

on:
pull_request:
branches:
- main

jobs:
security:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set Up Node.js
uses: actions/setup-node@v3
with:
node-version: '14'

- name: Install Dependencies
run: npm install

- name: Run Security Checks
run: npm audit

- name: Check Code for Vulnerabilities
run: npm audit --audit-level=critical

0 comments on commit ad410bb

Please sign in to comment.