Create sample.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD Pipeline | |
on: | |
push: | |
branches: dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Scan files with Trivy | |
run: | | |
trivy fs . > trivy-files.txt | |
# Assuming Trivy is already installed in the system | |
- name: Install dependencies and build | |
run: | | |
npm install | |
npm run build | |
- name: Send scan reports via email | |
run: | | |
echo "Scan report attached." | mail -s "Trivy Scan Report" -A trivy-files.txt [email protected] |