Skip to content

modifying deepscan yml file to deploy successfully #5

modifying deepscan yml file to deploy successfully

modifying deepscan yml file to deploy successfully #5

Workflow file for this run

name: DeepScan Static Analysis
on:
push:
branches: [ f24 ]
pull_request:
branches: [ f24 ]
jobs:
deepscan:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22.8.0' # Adjust to your project's Node.js version
- name: Install Dependencies
run: npm install
- name: Run DeepScan
uses: DeepScan/gh-action@v1
with:
api_key: ${{ secrets.DEEPSCAN_API_KEY }}