Skip to content

Commit

Permalink
Merge pull request #51 from psiinon/check-run
Browse files Browse the repository at this point in the history
Add check-run action
  • Loading branch information
kingthorin authored Nov 7, 2022
2 parents e356035 + 8127e77 commit c31a667
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set Node.js
uses: actions/setup-node@v2
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/check-run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check run

on:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:

jobs:
check-run:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- run: sudo apt-get update && sudo apt-get install -y nginx && sudo systemctl start nginx

- name: ZAP Scan
uses: ./
id: action-full-scan
with:
target: 'http://localhost'
allow_issue_writing: false

0 comments on commit c31a667

Please sign in to comment.