Skip to content
This repository was archived by the owner on Jul 16, 2026. It is now read-only.

ci: deploy daily automated contribution and security sync workflow #18

ci: deploy daily automated contribution and security sync workflow

ci: deploy daily automated contribution and security sync workflow #18

Workflow file for this run

name: Node.js CI (Kirov Dynamics)
on:
workflow_dispatch:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm install --legacy-peer-deps
- run: npm run build --if-present
- run: npm test --if-present
security_scan:
name: Security Scan (Trivy)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'table'
exit-code: '0'
severity: 'CRITICAL,HIGH'