-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (49 loc) · 1.46 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: 'build-test'
on:
push
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
env:
MAYHEM_TOKEN: ${{ secrets.MAYHEM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
# fetch entire history to compute diffs between jobs
fetch-depth: 0
- run: |
npm install
- run: |
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# fetch entire history to compute diffs between jobs
fetch-depth: 0
- uses: ./
continue-on-error: true
with:
mayhem-token: ${{ secrets.MAYHEM_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
mayhem-url: https://app.mayhem.security
api-url: https://demo-api.mayhem4api.forallsecure.com/api/v3
api-spec: https://demo-api.mayhem4api.forallsecure.com/api/v3/openapi.json
html-report: mapi.html
zap-api-scan: true
run-args: |
--warnaserror
--junit
junit.xml
- name: Archive HTML report
uses: actions/upload-artifact@v2
with:
name: mapi-report
path: mapi.html
- name: Archive JUnit results
uses: actions/upload-artifact@v2
with:
name: mapi-junit
path: junit.xml