Merge pull request #739 from tschmidtb51/editorial-2024-05-29 #83
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: CPE Dictionary Test (CSAF 2.1) | |
on: | |
push: | |
paths: | |
- 'csaf_2.1/**' | |
pull_request: | |
paths: | |
- 'csaf_2.1/**' | |
jobs: | |
cpe-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: Perform CPE Dictionary Test | |
run: ./csaf_2.1/test/cpe/run_dictionary_tests.sh | |
- name: Perform CPE local examples Test | |
run: ./csaf_2.1/test/cpe/run_local_tests.sh |