Skip to content

Merge branch 'main' of https://github.com/simeononsecurity/glotta #43

Merge branch 'main' of https://github.com/simeononsecurity/glotta

Merge branch 'main' of https://github.com/simeononsecurity/glotta #43

Workflow file for this run

name: VirusTotal Scan
on:
pull_request:
push:
jobs:
scan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Scan files
uses: crazy-max/ghaction-virustotal@v3
with:
vt_api_key: ${{ secrets.VT_API_KEY }}
files: |
.*\.js$
.*.js$
src\services\get-file-contents\index.js
src\services\get-missing-languages-for-dir\index.js
src\services\get-missing-languages-for-dir\index.test.js
src\services\parse-hugo-file\create-hugo-parser.js
src\services\parse-hugo-file\index.js
src\services\parse-hugo-file\index.test.js
src\services\translate-parsed-hugo\index.js
src\services\translate-parsed-hugo\index.test.js
src\services\translate-text\index.js
src\services\with-retries\index.js
src\assert-valid-language-id.js
src\assert-valid-translate-provider.js
src\generate-translated-files-if-not-exist.js
src\index.js
- name: Calculate SHA-256 Hashes
run: find . -type f -print0 | xargs -0 sha256sum | awk '{print $1}'