-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from studiorack/feature/validate-changed-files
Feature/validate changed files Fixes #17
- Loading branch information
Showing
7 changed files
with
686 additions
and
110 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
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 | ||
}); | ||
} |
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
Oops, something went wrong.