-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI pipeline for testing the public TAXII server via Bruno
- Loading branch information
Showing
5 changed files
with
3,671 additions
and
75 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,29 @@ | ||
# This workflow runs the API tests for the bruno application on the latest version of Ubuntu | ||
|
||
name: API Tests - Bruno | ||
|
||
on: | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
actions: read | ||
checks: write | ||
jobs: | ||
run_bruno_api_test: | ||
name: API Tests by Bruno | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies and run tests | ||
run: | | ||
cd bruno | ||
npm install | ||
npm run test | ||
- name: Publish Test Report | ||
uses: dorny/test-reporter@v1 | ||
if: success() || failure() # run this step even if previous step failed | ||
with: | ||
name: Bruno API Tests # Name of the check run which will be created | ||
path: bruno/report.xml # Path to test results | ||
reporter: java-junit # Format of test results |
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,3 @@ | ||
vars { | ||
host: https://attack-taxii.mitre.org | ||
} |
Oops, something went wrong.