Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/GH IR integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ jobs:
node-version: [18.x]

steps:
# ============= InvisiRisk Setup =============
- name: Setup PSE
uses: invisirisk/pse-action@latest
with:
app_token: ${{secrets.IR_API_KEY}}
# ============= InvisiRisk Setup End =============
# Checkout repository
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -31,3 +37,10 @@ jobs:
# Build project
- name: Build
run: npm run build
# ============= InvisiRisk Cleanup =============
- name: Cleanup PSE
if: always()
uses: invisirisk/pse-action@latest
with:
cleanup: "true"
# ============= InvisiRisk Cleanup End =============
Loading