KO
|
EN
gitlite — search
Search
#nodejs
#react
#android
#javascript
#python
#jquery
#machine-learning
#plugin
#rust
#eslint
#typescript
#backend
njsscan-action
★ 28
Open GitHub ↗
nodejsscan Github Action
Download README (.md)
Explore Similar Repositories
DeLUCS
:
This repository contains all the source files required to run DeLUCS, a deep learning clustering algorithm for DNA sequences.
PlatinmodsMenu
:
PMT menu from standoff 2 0.11.0 il2cpp
api
:
No description available.
streaming-all-the-way
:
Streaming all the way with ZIO, Doobie, Quill, htt4s and fs2
DistributedDrawing
:
A distributed drawing tool written in Blazor Wasm that uses an external SignalR Hub to sync drawings between clients.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
njsscan-action
?
Download (.md)
# njsscan action njsscan finds insecure code patterns in your node.js applications. ## Example Usage Add the following file .github/workflows/njsscan.yml to your node.js repositories in Github to enable njsscan in your CI/CD or DevSecOps pipeline. ```yaml name: njsscan on: push: branches: [ master ] pull_request: branches: [ master ] jobs: njsscan: runs-on: ubuntu-latest name: njsscan check steps: - name: Checkout the code uses: actions/checkout@v4.2.2 - uses: actions/setup-python@v5.3.0 with: python-version: '3.12' - name: nodejsscan scan id: njsscan uses: ajinabraham/njsscan-action@master with: args: '.' ``` ### Github Code Scanning SARIF upload ```yaml name: njsscan on: push: branches: [ master ] pull_request: branches: [ master ] jobs: njsscan: runs-on: ubuntu-latest name: njsscan code scanning steps: - name: Checkout the code uses: actions/checkout@v4.2.2 - uses: actions/setup-python@v5.3.0 with: python-version: '3.12' - name: nodejsscan scan id: njsscan uses: ajinabraham/njsscan-action@master with: args: '. --sarif --output results.sarif || true' - name: Upload njsscan report uses: github/codeql-action/upload-sarif@v3 with: sarif_file: results.sarif ``` For configuration, see: https://github.com/ajinabraham/njsscan#configure-njsscan