Feature/validate changed files #11
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: Validate | |
on: | |
pull_request: | |
jobs: | |
validate: | |
name: Validate code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install | |
run: | | |
npm ci | |
- name: Build | |
run: | | |
npm run build | |
- name: Changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
- name: Validate changed files | |
env: | |
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} | |
run: | | |
for file in ${CHANGED_FILES}; do | |
node ./build/validate.js $file | |
done | |
echo 'Downloads:' | |
ls ./downloads/ | |
- name: VirusTotal Scan | |
id: virustotal | |
uses: crazy-max/ghaction-virustotal@v4 | |
with: | |
vt_api_key: ${{ secrets.VT_API_KEY }} | |
request_rate: 4 | |
files: ./downloads/* | |
- name: VirusTotal Report | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const analysis = '${{steps.virustotal.outputs.analysis}}'; | |
if (!analysis) return; | |
let output = 'VirusTotal Report:\n'; | |
let lines = analysis.split(','); | |
for (let line of lines) { | |
output += '- [' + line.replace('./downloads/', '').replace('=https', '](https') + ')\n'; | |
} | |
const { data: comments } = await github.rest.issues.listComments({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.payload.number, | |
}); | |
const existingComment = comments.find(comment => comment.user.id === 41898282); | |
if (existingComment) { | |
await github.rest.issues.updateComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
comment_id: existingComment.id, | |
body: output | |
}); | |
} else { | |
await github.rest.issues.createComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.payload.number, | |
body: output | |
}); | |
} |