mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
ci: setup njsscan
See: https://github.com/ajinabraham/njsscan-action Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
6a56599c8a
commit
336d60a13c
1 changed files with 31 additions and 0 deletions
31
.github/workflows/njsscan-analysis.yml
vendored
Normal file
31
.github/workflows/njsscan-analysis.yml
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||||
#
|
||||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
name: "Njsscan Analysis"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ develop ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ develop ]
|
||||
schedule:
|
||||
- cron: '0 7 * * 6'
|
||||
|
||||
jobs:
|
||||
njsscan:
|
||||
runs-on: ubuntu-latest
|
||||
name: Njsscan code scanning
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@v2
|
||||
- name: Scan with njsscan
|
||||
id: njsscan
|
||||
uses: ajinabraham/njsscan-action@master
|
||||
with:
|
||||
args: '--sarif --output results.sarif src || true'
|
||||
- name: Upload njsscan report
|
||||
uses: github/codeql-action/upload-sarif@v1
|
||||
with:
|
||||
sarif_file: results.sarif
|
Loading…
Reference in a new issue