Add code linting

This commit is contained in:
Knut Ahlers 2024-08-19 23:33:24 +02:00
parent 5c4c0eb62c
commit 6ba0fe4456
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
2 changed files with 35 additions and 0 deletions

View File

@ -4,7 +4,34 @@ name: CI Workflow
on: push
jobs:
test:
defaults:
run:
shell: bash
container:
image: luzifer/gh-arch-env
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- name: Marking workdir safe
run: git config --global --add safe.directory /__w/stadt-land-fluss/stadt-land-fluss
- name: Lint code
run: make frontend_lint trivy
gh-page-publish:
if: ${{ github.ref == 'refs/heads/master' }}
needs: [test]
defaults:
run:
shell: bash

View File

@ -14,3 +14,11 @@ frontend_lint: node_modules
node_modules:
npm ci --include dev
trivy:
trivy fs . \
--dependency-tree \
--format table \
--quiet \
--scanners misconfig,license,secret,vuln \
--severity HIGH,CRITICAL