mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 07:08:10 -05:00
* fix oom tests? * update tests * try fixing tests again * fix: unblock mobile app jest runner * fix corrupt yarn lock * Reduce heavy React Native usage in tests (#1436) * Reduce heavy React Native usage in tests * Stabilize mobile tests * prettier * ignore podfile.lock * fix test and gitleaks * fix path * update * fix tests * address tamagui concern
21 lines
454 B
YAML
21 lines
454 B
YAML
name: Gitleaks Scan
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
gitleaks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install gitleaks
|
|
uses: gitleaks/gitleaks-action@v2.3.9
|
|
with:
|
|
config-path: gitleaks-override.toml
|
|
fail: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
|