Seeding the CSAF v2.1 workplace - separating source and deliverables #7
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: CSAF Mandatory Tests (CSAF 2.0) | |
on: | |
push: | |
paths: | |
- 'csaf_2.0/**' | |
pull_request: | |
paths: | |
- 'csaf_2.0/**' | |
jobs: | |
mandatory-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Setup csaf-validator-lib | |
run: | | |
cd .. | |
git clone https://github.com/secvisogram/csaf-validator-lib.git | |
cd csaf-validator-lib && npm ci --prod | |
- name: Run mandatory tests on examples | |
run: | | |
for i in `ls -1 ../csaf/csaf_2.0/examples/csaf/*.json` | |
do | |
printf "%s%s\n" "Starting test of " $i | |
../csaf-validator-lib/scripts/runTest.js $i base | |
done | |
# Only temporary until examples in the repo are reorganized | |
- name: Run mandatory tests on examples/csaf_vex | |
run: | | |
for i in `ls -1 ../csaf/csaf_2.0/examples/csaf/csaf_vex/*.json` | |
do | |
printf "%s%s\n" "Starting test of " $i | |
../csaf-validator-lib/scripts/runTest.js $i base | |
done |