Skip to content

Merge pull request #462 from knrdl/dependabot/npm_and_yarn/prettier-3… #530

Merge pull request #462 from knrdl/dependabot/npm_and_yarn/prettier-3…

Merge pull request #462 from knrdl/dependabot/npm_and_yarn/prettier-3… #530

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
jobs:
hadolint:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: hadolint/[email protected]
with:
dockerfile: Dockerfile
ignore: DL3018
njsscan:
runs-on: ubuntu-latest
timeout-minutes: 15
name: njsscan code scanning
steps:
- name: Checkout the code
uses: actions/checkout@v4
- 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