Skip to content

feat(web): implement side-by-side Monaco interactive code diff viewer #360

feat(web): implement side-by-side Monaco interactive code diff viewer

feat(web): implement side-by-side Monaco interactive code diff viewer #360

Workflow file for this run

name: Secret Scanning
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
gitleaks:
name: Gitleaks Secret Scan
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Gitleaks
run: |
wget -q https://github.com/gitleaks/gitleaks/releases/download/v8.18.2/gitleaks_8.18.2_linux_x64.tar.gz
tar -zxvf gitleaks_8.18.2_linux_x64.tar.gz
sudo mv gitleaks /usr/local/bin/
- name: Run gitleaks detect on PR
if: github.event_name == 'pull_request'
run: gitleaks detect --source . --verbose --redact
- name: Run gitleaks detect on push
if: github.event_name == 'push'
run: gitleaks detect --source . --verbose --redact