CI/CD Integrations
Patchlynx integrates natively with the major CI systems. Choose your platform below.
GitHub Actions
The easiest integration. The Patchlynx GitHub App handles everything automatically when installed — no workflow file needed. However, you can also invoke the CLI directly for advanced configurations:
.github/workflows/patchlynx.yml
name: Patchlynx Security Check
on:
pull_request:
paths:
- "**/package-lock.json"
- "**/yarn.lock"
jobs:
patchlynx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: patchlynx/action@v2
with:
api-key: ${{ secrets.PATCHLYNX_API_KEY }}
fail-on: CRITICAL